以下代码:
if (!touch($this->cacheDirectory . '/index.html')) {
$this->error("Could not create the index.html file in the cache directory.");
}
始终在Mac服务器中返回用户错误意味着上面的触摸功能返回false。
我已验证过的事情:
_www
。请帮忙。
答案 0 :(得分:0)
看这里:
http://www.php.net/manual/de/function.touch.php#86781
实际上,Glen是对的,如果PHP不是文件的当前所有者,PHP将不会触摸,即使目录和文件可由PHP用户写入。
因此,删除该文件并让PHP通过触摸创建它。