1、使用fwrite()函数写入文件
<?php
$now=date('y-m-d',time());
$filename='log/tongbu_'.$now.'.log';
$file=fopen($filename,"a+"); //a+表示文件可读写方式打开
fwrite($file,'开始写入'."
");
$time=time();
$res="www.geiliyou.com";
$result='ok';
fwrite($file,$time." ".$res." ".$result."
");
fwrite($file,'写入完成'."
");
2、使用error_log()函数写入
<?php
$now=date('y-m-d',time());
$filename='log/tongbu_'.$now.'.log';
$time=time();
$re="www.geiliyou.com";
$result='ok';
error_log($time." ".$re." ".$result."
",3,$filename);//3表示消息被发送到后面的文件
?>
3、使用file_put_contents()函数创建写入文件
<?php
function writelog($loginfo){
$file='log/tongbu_'.date('y-m-d').'.log';
if(!is_file($file)){
file_put_contents($file,'',FILE_APPEND);//如果文件不存在,则创建一个新文件。
}
$contents=$loginfo."
";
file_put_contents($file, $contents,FILE_APPEND);
}
?>
————————————————
版权声明:本文为CSDN博主「君临天下_Sugar」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/tsummerb/article/details/77488300