根据fopen documentation,在某些模式下,如果文件不存在,它会创建文件,但在我的情况下,我检查了所有'w','w +','x'和'x +'模式,但它只是向我发出警告,它无法创建文件。
这是我的代码:
$this->handle = fopen($this->log_name, 'w');
我得到了什么:
Warning: fopen(D:\xampp\htdocs\farid\logs\error.php) [function.fopen]: failed to open stream: No such file or directory in D:\xampp\htdocs\farid\libraries\error\log.php on line 34
Warning: fwrite() expects parameter 1 to be resource, boolean given in D:\xampp\htdocs\farid\libraries\error\log.php on line 66
Warning: fclose() expects parameter 1 to be resource, boolean given in D:\xampp\htdocs\farid\libraries\error\log.php on line 27
我在Windows环境中工作。
答案 0 :(得分:9)
检查日志文件的路径是否存在,它是创建文件而不是目录。
同时检查运行xampp的用户是否可以访问您指定的文件夹。