homevip/seaslog

规范的PHP日志扩展

v1.0.0 2020-07-26 09:18 UTC

This package is auto-updated.

Last update: 2024-04-26 18:27:17 UTC


README

规范的PHP日志扩展
    use SeasLog;
    public function test()
    {

        $path = 'D:\SeasLog\\' . date('Y-m-d H');
        $param = [
            'id'    => mt_rand(100, 999),
            'name'  => mt_rand(100, 999),
        ];
        $param = json_encode($param, JSON_UNESCAPED_UNICODE);
        var_dump($this->set($path, $param));
    }