我想检查用户是否使用表单上传了图像。
我努力了:
if (empty($_FILES['txtImage'])) {
$msg = 'Opss, you forgot the image.';
}
我想检查用户是否使用表单上传了图像。
我努力了:
if (empty($_FILES['txtImage'])) {
$msg = 'Opss, you forgot the image.';
}
自 PHP 4.2.0 起,PHP 会随文件数组返回一个适当的错误代码。
所以,
<?php
if ($_FILES['txtImage']['error'] === UPLOAD_ERR_NO_FILE) {
$msg .= "Opss, you forgot the image.<br>";
}
?>
http://www.php.net/is_uploaded_file
if(!file_exists($_FILES['myfile']['tmp_name']) || !is_uploaded_file($_FILES['myfile']['tmp_name'])) {
echo 'No upload';
}
此外,您可以使用 getimagesize() 检查,如果返回 FALSE,则不是图像