私はそれを機能させたばかりで、終わったと思ったら機能しなくなりました。ファイルが画像でない場合は、エラーを発生させようとしています。これが私が話している作品です。どんな助けでも喜んでいただければ幸いです
$type_array = array('image/jpeg', 'image/gif', 'image/png','image/x-png'); //image types allowed
if(isset($_FILES['images'][$i]) and $_FILES['images']['name'][$i] != '') { //check image
if ($_FILES['images']['size'][$i] < 10240000) { //make sure file is larger than 10mb
$type = $_FILES['images']['type'][$i]; //get the file types
if (!in_array($type, $type_array)) { //make sure the images are allowed
$errors[] = "Please check that you are uploading an image.";
$show_errors = 'show';
exit;
}
} else {
$errors[] = "Please make sure each file is less than 10MB.";
$show_errors = 'show';
exit;
}
} //image checked