标签:创建文件 文件目录 sts lin linu 更改 使用 bsp span
服务器中运行项目的时候,有时候会出现图片上传失败,查看报错原因才知道是文件夹没有写入权限导致上传失败。
方案1:
在使用Linux命令更改对应目录的权限
方案2:
在代码中创建文件夹的时候给予对应的777权限
if (!file_exists($dir)) { //$dir 为对应的文件目录 mkdir($dir, 0777, true); }
标签:创建文件 文件目录 sts lin linu 更改 使用 bsp span
原文地址:https://www.cnblogs.com/yulongcode/p/10799397.html