根据fopen 文档,在某些模式下,如果文件不存在,它会创建文件,但在我的情况下,我检查了所有“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环境下工作。