当前位置:Gxlcms > PHP教程 > 服务器上file_put_contents写入文件失败解决方法

服务器上file_put_contents写入文件失败解决方法

时间:2021-07-01 10:21:17 帮助过:214人阅读

服务器上file_put_contents写入文件失败

写入的文件为


-rwxr-xr-x. 1 root root 15061 Feb 21 00:07 student.css


语句为


$cont = str_replace('/Public/Images', __APP__ . '/Public/Images', $content);
echo $cont; // 此为修改过后的内容
var_dump(file_put_contents($dv, $cont)); // 返回bool(false)
exit;


这是咋回事???
------解决方案--------------------
你不是看到没有权限了吗?
------解决方案--------------------
你是root用户吗?其他用户是没有写的权限的
------解决方案--------------------
chmod 777 path

人气教程排行