我正在尝试使用 php 将照片上传到 mysql 数据库,但是出现以下错误: failed to open stream: Permission denied in '/The location of my php file' on line 40. move_uploaded_file(): Unable to move '/Applications/XAMPP/xamppfiles/temp/phpgZi5gV to 'The location where the image will be stored'这是我的代码:$dir = $path;$default = "default.png";// get Filename$filename = basename($filen['name']);$targetFilePath = $dir.$filename;$filetype = pathinfo($targetFilePath, PATHINFO_EXTENSION);if(!empty($filename)) { //allowed file formats $allowedFormats = array("jpg", "png", "jpeg", "gif", "pdf"); if(in_array($filetype, $allowedFormats)) { if(move_uploaded_file($filen['tmp_name'], $targetFilePath)) { return $targetFilePath; } }
1 回答
沧海一幻觉
TA贡献1824条经验 获得超5个赞
看起来您正在处理一些权限问题,您的应用程序服务器没有权限将图像从其当前文件夹中移动/Applications/XAMPP/xamppfiles/temp/
。
您能否更改文件夹的权限以查看是否可以解决问题?
运行以下命令:
chmod 777 /Applications/XAMPP/xamppfiles/temp/
- 1 回答
- 0 关注
- 101 浏览
添加回答
举报
0/150
提交
取消