伙计们, 我在代码中遇到了一个有趣的错误,我无法弄清楚原因。
我有一个包含3个字段的表单。姓名,电子邮件,文件上传字段。字段填写后,它会将内容发送回同一文件。
<form enctype="multipart/form-data" method="POST" action="index.php">
<input type="text" name="name" value="<?php if(isset($_POST['name'])&&!empty($_POST['name'])){ echo $_POST['name'];}?>" maxlength="100" />
<input type="text" name="email" value="<?php if(isset($_POST['email'])&&!empty($_POST['email'])){ echo $_POST['email'];}?>" maxlength="50" />
<input type="hidden" name="MAX_FILE_SIZE" value="2097152" /> <input type="file" name="file_upload" size="15" value="<?php if(isset($_FILES["file_upload"]["name"])&&!empty($_FILES["file_upload"]["name"])){ echo $_FILES["file_upload"]["name"];}?>"/>
<input type="submit" name="submit" value="" id="image-button" />
</form>
所以表单发送回index.php。现在错误处理:(错误字段的值是匈牙利语,但我翻译了必要的字段)
$upload_errors = array(
// http://www.php.net/manual/en/features.file-upload.errors.php
UPLOAD_ERR_OK => "Nincsenek hibák.",
UPLOAD_ERR_INI_SIZE => "Nagyobb a megengedett fileméretnél.",
UPLOAD_ERR_FORM_SIZE => "Nagyobb a form megengedett fileméreténél.",
UPLOAD_ERR_PARTIAL => "Részleges feltöltés.",
UPLOAD_ERR_NO_FILE => "File nem található.",
UPLOAD_ERR_NO_TMP_DIR => "Átmeneti könyvtár nem található.",
UPLOAD_ERR_CANT_WRITE => "Nem írható cél mappa.",
UPLOAD_ERR_EXTENSION => "Hibás kiterjesztés."
);
if(isset($_POST['submit'])){
$errors = array();
$required_fields = array('name' => 'A név megadása kötelező.', 'email' => 'E-mail cím megadása kötelező.' );
foreach($required_fields as $key => $value) {
if (!isset($_POST[$key]) || empty($_POST[$key])) {
$errors[] = $value;
}
}
if(!is_valid_email($_POST['email'])){
$errors[] = 'Set a correct mail address.';
}
if($_FILES["file_upload"]["size"]>2097152){
$errors[] = 'Maximum 2MB file size.';
}
if(!isset($_FILES["file_upload"]["name"])||empty($_FILES["file_upload"]["name"])){
$errors[] = 'You must upload a picture!';
}
if (($_FILES["file_upload"]["type"] !== "image/png")&& ($_FILES["file_upload"]["type"] !== "image/jpg") && ($_FILES["file_upload"]["type"] !== "image/jpeg") && ($_FILES["file_upload"]["type"] !== "image/pjpeg")){
$errors[] = 'Only PNG or JPG/JPEG files allowed.';
}
当我尝试上传文件大小为2MB的文件时,错误返回:
此错误属于文件类型!表单验证会返回不同的错误!
的问题: 的
为什么会这样?为什么不触发最大2MB文件大小。错误???
答案 0 :(得分:1)
如果文件大于upload_max_filesize
[docs](通常为2MB),PHP将忽略该文件,将['size']
设置为0
,将['error']
设置为{{3} }。
检查['error']
而不是['size']
。
顺便说一下,你不应该依赖["type"]
,它是由客户设置的,客户可以将它设置为他想要的任何东西。