$file = fopen("log.txt", "a") or die("Unable to open file!"); //指定log文件
$txt = $log; //log内容
fwrite($file, $txt); //写log
fclose($file); //收尾
把log内容写到$txt,然后写入指定txt文件里。
$file = fopen("log.txt", "a") or die("Unable to open file!"); //指定log文件
$txt = $log; //log内容
fwrite($file, $txt); //写log
fclose($file); //收尾
把log内容写到$txt,然后写入指定txt文件里。