lifanko/slog

PHP 的 Slog 库

1.0.5 2022-04-19 10:36 UTC

This package is auto-updated.

Last update: 2024-09-20 06:34:42 UTC


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

Slog 服务器

Slog 服务器: https://github.com/lifankohome/slog-server