lifanko / slog
PHP 的 Slog 库
1.0.5
2022-04-19 10:36 UTC
Requires
- php: >=5.3.0
- ext-curl: *
- ext-json: *
README
PHP 的 Slog 库
安装
composer require lifanko/slog
使用
发送实时日志。
<?php use lifanko\Slog; Slog::log('Hello World'); Slog::log(12345.6789); Slog::log([1, 2, 3, 4, 5, '67890']); Slog::log([ 'name' => 'slog', 'function' => 'send real time log', 'author' => [ 'name' => 'lifanko', 'repository' => 'https://github.com/lifankohome/slog-php' ] ]);
Slog 客户端
Slog 工具: https://github.com/lifankohome/slog-tool