无法将文件移动到php中的文件夹中

时间:2014-02-05 13:56:58

标签: php mysql file upload mysqli

我无法将文件移动到所需的文件夹中。我想将图像保存到上传的文件夹中。在mysql中我有它的blob类型。 这是我的代码

$target_Path = "uploaded/";
    $target_Path = $target_Path.basename( $_FILES['image']['name'] );
    move_uploaded_file( $_FILES['image']['tmp_name'], $target_Path );

    mysqli_query($con,"UPDATE info SET photo='$target_Path' WHERE user_id='$id'");

在mysql中,它显示某些内容已保存但未打开且文件未移至上传文件夹中。我在我的localhost中这样做。请帮忙。

1 个答案:

答案 0 :(得分:0)

尝试使用IF语句包装move_uploaded_file,如果文件无法传输则抛出异常:

if (move_uploaded_file($_FILES['image']['tmp_name'], $target_Path ) === false) {
    throw new Exception([text]);
}

或者,要测试目的地是否可写,您可以尝试在那里打开文件并写入:

if (($fp = fopen($target_path, 'w')) === false) {
    thrown new Exception("Failed to open file $target_path for writing");
}
fwrite($fp, file_get_contents($_FILES['image']['tmp_name']));
fclose($fp);

问题可能是文件权限或所有权问题,您需要使用chmod或chown在命令行修复。