php 记录日志log

180it 2020-12-22 PM 1523℃ 0条

function addLog($msg,$time='') {

if(empty($time)) {
    $time=date('Y-m-d H:i:s');
}
$file = fopen('log_'.md5($GLOBALS['C']['SiteHash']).'.txt', "a");
fwrite($file, $time.' '.$msg."\r\n");
fclose($file);
Return true;

}

支付宝打赏支付宝打赏 微信打赏微信打赏

如果文章或资源对您有帮助,欢迎打赏作者。一路走来,感谢有您!

标签: none

php 记录日志log