我正在尝试实施文件上传并检查它是否是.png文件。
即使我收到警告,也不会发生错误。 代码的输出如下:
Caffpture.PNGNo错误:)警告:exif_imagetype(Caffpture.PNG): 无法打开流:没有这样的文件或目录 第16行的/home/store/fhs36113/public_html/wp2/u4/upload.php错误 文件类型!
我希望你们能告诉我自己做错了什么。
<?php
error_reporting(E_ALL);
ini_set("display_errors", true);
echo $_FILES["thefile"]["name"];
if ($_FILES['thefile']['error'] === UPLOAD_ERR_OK) {
echo "No Errors :)";
}else{
echo $_FILES['thefile']['error'];
}
if(exif_imagetype($_FILES['thefile']['name']) == IMAGETYPE_PNG)
{
$target_path = "uploads/";
$target_path = $target_path . basename( $_FILES['thefile']['name']);
if(move_uploaded_file($_FILES['thefile']['tmp_name'], $target_path)) {
echo "The file ". basename( $_FILES['thefile']['name']).
" has been uploaded";
} else{
echo "There was an error uploading the file, please try again! Remember: only jpeg, pnh and gif files are allowed!";
}
}
else
{
echo "wrong file type!";
}
?>
答案 0 :(得分:1)
['name']
是进程的CLIENT端使用的文件名。 PHP上传实际存储在['tmp_name']
中,直到您将文件移动/复制到其他位置。因此,您正在访问服务器上几乎不能保证的文件。
尝试
if(exif_imagetype($_FILES['thefile']['tmp_name']) == IMAGETYPE_PNG)
代替。