写日志

public function writefile($filename,$txt){
    $myfile = fopen($_SERVER['DOCUMENT_ROOT'].'/'.$filename, "a") or die("Unable to open file!");
    fwrite($myfile, $txt);
    fclose($myfile);
}

写日志》有一个想法

  1. jjger

    $wlog = fopen(“__PUBLIC__/../log.txt”,’w’);
    fwrite($wlog,$i);
    这两行就行

    回复

发表回复

您的电子邮箱地址不会被公开。