mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
164 lines
6.0 KiB
PHP
164 lines
6.0 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;
|
|
|
|
use think\Container;
|
|
|
|
/**
|
|
* 本地化调试输出到文件
|
|
*/
|
|
class File
|
|
{
|
|
protected $config = [
|
|
'time_format' => ' c ',
|
|
'single' => false,
|
|
'file_size' => 2097152,
|
|
'path' => '',
|
|
'apart_level' => [],
|
|
'max_files' => 0,
|
|
];
|
|
|
|
protected $writed = [];
|
|
|
|
// 实例化并传入参数
|
|
public function __construct($config = [])
|
|
{
|
|
if (is_array($config)) {
|
|
$this->config = array_merge($this->config, $config);
|
|
}
|
|
|
|
if (empty($this->config['path'])) {
|
|
$this->config['path'] = Container::get('app')->getRuntimePath() . 'log' . DIRECTORY_SEPARATOR;
|
|
} elseif (substr($this->config['path'], -1) != DIRECTORY_SEPARATOR) {
|
|
$this->config['path'] .= DIRECTORY_SEPARATOR;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 日志写入接口
|
|
* @access public
|
|
* @param array $log 日志信息
|
|
* @return bool
|
|
*/
|
|
public function save(array $log = [])
|
|
{
|
|
if ($this->config['single']) {
|
|
$name = is_string($this->config['single']) ? $this->config['single'] : 'single';
|
|
$destination = $this->config['path'] . $name . '.log';
|
|
} else {
|
|
$cli = PHP_SAPI == 'cli' ? '_cli' : '';
|
|
|
|
if ($this->config['max_files']) {
|
|
$filename = date('Ymd') . $cli . '.log';
|
|
$files = glob($this->config['path'] . '*.log');
|
|
|
|
try {
|
|
if (count($files) > $this->config['max_files']) {
|
|
unlink($files[0]);
|
|
}
|
|
} catch (\Exception $e) {
|
|
}
|
|
} else {
|
|
$filename = date('Ym') . DIRECTORY_SEPARATOR . date('d') . $cli . '.log';
|
|
}
|
|
|
|
$destination = $this->config['path'] . $filename;
|
|
}
|
|
|
|
$path = dirname($destination);
|
|
!is_dir($path) && mkdir($path, 0755, true);
|
|
|
|
$info = '';
|
|
foreach ($log as $type => $val) {
|
|
$level = '';
|
|
foreach ($val as $msg) {
|
|
if (!is_string($msg)) {
|
|
$msg = var_export($msg, true);
|
|
}
|
|
$level .= '[ ' . $type . ' ] ' . $msg . "\r\n";
|
|
}
|
|
|
|
if (in_array($type, $this->config['apart_level'])) {
|
|
// 独立记录的日志级别
|
|
if ($this->config['single']) {
|
|
$filename = $path . DIRECTORY_SEPARATOR . $name . '_' . $type . '.log';
|
|
} elseif ($this->config['max_files']) {
|
|
$filename = $path . DIRECTORY_SEPARATOR . date('Ymd') . '_' . $type . $cli . '.log';
|
|
} else {
|
|
$filename = $path . DIRECTORY_SEPARATOR . date('d') . '_' . $type . $cli . '.log';
|
|
}
|
|
|
|
$this->write($level, $filename, true);
|
|
} else {
|
|
$info .= $level;
|
|
}
|
|
}
|
|
|
|
if ($info) {
|
|
return $this->write($info, $destination);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 日志写入
|
|
* @access protected
|
|
* @param array $message 日志信息
|
|
* @param string $destination 日志文件
|
|
* @param bool $apart 是否独立文件写入
|
|
* @return bool
|
|
*/
|
|
protected function write($message, $destination, $apart = false)
|
|
{
|
|
// 检测日志文件大小,超过配置大小则备份日志文件重新生成
|
|
if (is_file($destination) && floor($this->config['file_size']) <= filesize($destination)) {
|
|
try {
|
|
rename($destination, dirname($destination) . DIRECTORY_SEPARATOR . time() . '-' . basename($destination));
|
|
} catch (\Exception $e) {
|
|
}
|
|
|
|
$this->writed[$destination] = false;
|
|
}
|
|
|
|
if (empty($this->writed[$destination]) && PHP_SAPI != 'cli') {
|
|
if (Container::get('app')->isDebug() && !$apart) {
|
|
// 获取基本信息
|
|
$current_uri = $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
|
|
$runtime = round(microtime(true) - Container::get('app')->getBeginTime(), 10);
|
|
$reqs = $runtime > 0 ? number_format(1 / $runtime, 2) : '∞';
|
|
$time_str = ' [运行时间:' . number_format($runtime, 6) . 's][吞吐率:' . $reqs . 'req/s]';
|
|
$memory_use = number_format((memory_get_usage() - Container::get('app')->getBeginMem()) / 1024, 2);
|
|
$memory_str = ' [内存消耗:' . $memory_use . 'kb]';
|
|
$file_load = ' [文件加载:' . count(get_included_files()) . ']';
|
|
$message = '[ info ] ' . $current_uri . $time_str . $memory_str . $file_load . "\r\n" . $message;
|
|
}
|
|
|
|
$now = date($this->config['time_format']);
|
|
$ip = Container::get('request')->ip();
|
|
$method = isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : 'CLI';
|
|
$uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';
|
|
$message = "---------------------------------------------------------------\r\n[{$now}] {$ip} {$method} {$uri}\r\n" . $message;
|
|
|
|
$this->writed[$destination] = true;
|
|
}
|
|
|
|
if (PHP_SAPI == 'cli') {
|
|
$now = date($this->config['time_format']);
|
|
$message = "[{$now}]" . $message;
|
|
}
|
|
|
|
return error_log($message, 3, $destination);
|
|
}
|
|
|
|
}
|