82 lines
3.2 KiB
PHP
82 lines
3.2 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace think\log\driver;
|
|
|
|
/**
|
|
* 本地化调试输出到文件
|
|
*/
|
|
class File
|
|
{
|
|
protected $config = [
|
|
'time_format' => ' c ',
|
|
'file_size' => 2097152,
|
|
'path' => LOG_PATH,
|
|
];
|
|
|
|
// 实例化并传入参数
|
|
public function __construct($config = [])
|
|
{
|
|
if (is_array($config)) {
|
|
$this->config = array_merge($this->config, $config);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 日志写入接口
|
|
* @access public
|
|
* @param array $log 日志信息
|
|
* @return bool
|
|
*/
|
|
public function save(array $log = [])
|
|
{
|
|
$now = date($this->config['time_format']);
|
|
$destination = $this->config['path'] . date('y_m_d') . '.log';
|
|
|
|
!is_dir($this->config['path']) && mkdir($this->config['path'], 0755, true);
|
|
|
|
//检测日志文件大小,超过配置大小则备份日志文件重新生成
|
|
if (is_file($destination) && floor($this->config['file_size']) <= filesize($destination)) {
|
|
rename($destination, dirname($destination) . DS . $_SERVER['REQUEST_TIME'] . '-' . basename($destination));
|
|
}
|
|
|
|
// 获取基本信息
|
|
if (isset($_SERVER['HTTP_HOST'])) {
|
|
$current_uri = $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
|
|
} else {
|
|
$current_uri = "cmd:" . implode(' ', $_SERVER['argv']);
|
|
}
|
|
$runtime = number_format(microtime(true), 8, '.', '') - THINK_START_TIME;
|
|
$reqs = number_format(1 / $runtime, 2);
|
|
$time_str = " [运行时间:{$runtime}s] [吞吐率:{$reqs}req/s]";
|
|
$memory_use = number_format((memory_get_usage() - THINK_START_MEM) / 1024, 2);
|
|
$memory_str = " [内存消耗:{$memory_use}kb]";
|
|
$file_load = " [文件加载:" . count(get_included_files()) . "]";
|
|
|
|
$info = '[ log ] ' . $current_uri . $time_str . $memory_str . $file_load . "\r\n";
|
|
foreach ($log as $type => $val) {
|
|
foreach ($val as $msg) {
|
|
if (!is_string($msg)) {
|
|
$msg = var_export($msg, true);
|
|
}
|
|
$info .= '[ ' . $type . ' ] ' . $msg . "\r\n";
|
|
}
|
|
}
|
|
|
|
$server = isset($_SERVER['SERVER_ADDR']) ? $_SERVER['SERVER_ADDR'] : '0.0.0.0';
|
|
$remote = isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : '0.0.0.0';
|
|
$method = isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : 'CLI';
|
|
$uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';
|
|
return error_log("[{$now}] {$server} {$remote} {$method} {$uri}\r\n{$info}\r\n", 3, $destination);
|
|
}
|
|
|
|
}
|