-1
我想上傳圖片,並擁有它的縮略圖版本150像素和400像素的最大高度的最大寬度,並保存爲縮略圖文件名縮略圖PHP - 上傳圖像與具有最大寬度和高度
if(isset($_FILES['image'])){
$errors= array();
$file_name = $_FILES['image']['name'];
$file_size =$_FILES['image']['size'];
$file_tmp =$_FILES['image']['tmp_name'];
$file_type=$_FILES['image']['type'];
$tempext = explode('.',$_FILES['image']['name']);
$file_ext=strtolower(end($tempext));
$extensions = array("jpeg","jpg","png","gif","");
if(in_array($file_ext,$extensions)=== false){
$errors[]="extension not allowed, please choose a different file.";
}
if($file_size > 419430400){
$errors[]='Maximum file size is 400mb';
}
if(empty($errors)==true){
move_uploaded_file($file_tmp,"../large_format/a0/".$file_name);
echo '<script>function myFunction(){alert("Success!");} myFunction();</script>';
}else{
print_r($errors);
}
所以會有一個大的圖像文件和它的縮略圖版本。 我真的很感激建議代碼的一個例子。
在此先感謝
嗨石埠托馬斯。你能告訴我如何使用這個? –