无法使用 Php 上传照片

我正在尝试使用 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;

        }

    }


慕村225694
浏览 102回答 1
1回答

沧海一幻觉

看起来您正在处理一些权限问题,您的应用程序服务器没有权限将图像从其当前文件夹中移动/Applications/XAMPP/xamppfiles/temp/。您能否更改文件夹的权限以查看是否可以解决问题?运行以下命令:chmod 777 /Applications/XAMPP/xamppfiles/temp/
打开App,查看更多内容
随时随地看视频慕课网APP