文件名称:tito-log:简单的 PHP 记录器
文件大小:1KB
文件格式:ZIP
更新时间:2024-07-15 19:14:04
PHP
简单的 PHP 记录器 要使用这个类,首先将 Log.php 包含到你的项目中: require_once 'Log.php' ; 创建类的新实例: // default log file will be: logs/default_log.txt $ log = new Log (); // specify your own log file, and make sure it is writable by the http server $ log = new Log ( 'application_log.txt' ); 记录消息 // log message (default) $ log -> write ( 'could not process request' ); // log message (custom user log type) $ log -> wr
【文件预览】:
tito-log-master
----.gitignore(16B)
----Log.php(1KB)
----README.md(623B)