php日志保存文件

https://zhidao.baidu.com/question/265232020668013045.html

<?php
header('Content-Type:text/html;charset=utf-8');
date_default_timezone_set("Asia/Chongqing");
 
function my_error($errno,$errmes){
    echo "<h3>".'line'.$errno."</h3>";
 
    $message="错误信息是:".$errmes.date("Y-m-d H-i-s")."\n";
    echo $message;
    error_log($message,3,"aaaa.txt");
    exit();
}
set_error_handler("my_error",E_WARNING);
 
$fp=fopen("csa.txt","r");
     
?>

    A+
发布日期:2017年12月21日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: