以下代码:
if (!touch($this->cacheDirectory . '/index.html')) {
$this->error("Could not create the index.html file in the cache directory.");
}
在 Mac 服务器中总是返回用户错误意味着上面的触摸函数返回 false。
我已经验证的事情:
- 通过终端(unix 控制台)创建文件可以正常工作 - 使用 touch 命令。
- cacheDirectory 文件夹的权限为 775。
- 这个文件夹的组是_www,Mac中的apache用户是
_www
。
请帮忙。