2013-02-11 79 views
2

我面臨以下兩個問題: 1.從腳本線以下不爲最大文件大小檢查,而不是它顯示Please Select a Photo多文件上傳和最大尺寸問題

//Check that the file is not too big 
if ($_FILES[$file_field]['size'] > $max_size) { 
    $out['error'][] = "File is too big"; 
    } 

2.我想,讓用戶上傳五張照片,同時需要一張照片,這意味着用戶必須上傳照片1-5的權利,但需要一張照片,他/她就是做不到提交所有輸入爲空的表單。我該如何解決這兩個問題?

<?php 

function uploadFile ($file_field = null, $check_image = false, $random_name = false) { 

//Config Section  
//Set file upload path 
$path = 'Productpic/'; //with trailing slash 
//Set max file size in bytes 
$max_size = 2097152; 
//Set default file extension whitelist 
$whitelist_ext = array('jpg','png','gif', 'JPG'); 
//Set default file type whitelist 
$whitelist_type = array('image/jpeg', 'image/png','image/gif'); 

//The Validation 
// Create an array to hold any output 
$out = array('error'=>null); 

if (!$file_field) { 
$out['error'][] = "Please specify a valid form field name";   
} 

if (!$path) { 
$out['error'][] = "Please specify a valid upload path";    
} 

if (count($out['error'])>0) { 
return $out; 
} 

//Make sure that there is a file 
if((!empty($_FILES[$file_field])) && ($_FILES[$file_field]['error'] == 0)) { 

// Get filename 
$file_info = pathinfo($_FILES[$file_field]['name']); 
$name = $file_info['filename']; 
$ext = $file_info['extension']; 

//Check file has the right extension   
if (!in_array($ext, $whitelist_ext)) { 
    $out['error'][] = "Invalid file Extension"; 
} 

//Check that the file is of the right type 
if (!in_array($_FILES[$file_field]["type"], $whitelist_type)) { 
    $out['error'][] = "Invalid file Type"; 
} 

//Check that the file is not too big 
if ($_FILES[$file_field]['size'] > $max_size) { 
    $out['error'][] = "File is too big"; 
    } 

//If $check image is set as true 
if ($check_image) { 
    if (!getimagesize($_FILES[$file_field]['tmp_name'])) { 
    $out['error'][] = "The file you trying to upload is not an Image, we only accept images"; 
    } 
} 

//Create full filename including path 
if ($random_name) { 

    // Generate random filename 
    $tmp = str_replace(array('.',' '), array('',''), microtime()); 

    if (!$tmp || $tmp == '') { 
    $out['error'][] = "File must have a name"; 
    }  
    $newname = $tmp.'.'.$ext;         
} else { 
    $newname = $name.'.'.$ext; 
} 

//Check if file already exists on server 
if (file_exists($path.$newname)) { 
    $out['error'][] = "The image you trying to upload already exists, please upload only once"; 
} 

if (count($out['error'])>0) { 
    //The file has not correctly validated 
    return $out; 
} 

if (move_uploaded_file($_FILES[$file_field]['tmp_name'], $path.$newname)) { 
    //Success 

    $out['filepath'] = $path; 
    $out['filename'] = $newname; 
    return $out; 
} else { 
    $out['error'][] = "Server Error!"; 
} 

} else { 
$out['error'][] = "Please select a photo"; 
return $out; 
}  
} 
?> 



<?php 

if (isset($_POST['submit'])) { 

$file = uploadFile('file', true, false); 
if (!is_array($file['error'])) { 
$message = ''; 
$sub=1; 
$message = "File uploaded successfully"; 
echo $message; 
} 

} 
?> 



<form action="" method="post" enctype="multipart/form-data" name="form1" id="form1"> 
<?php 
ini_set("display_errors", 0); 
if($sub==0) 
{ 
?> 
<input name="file" type="file" size="20" /><span><?php 

if (isset($_POST['submit'])) { 

$file = uploadFile('file', true, false); 
if (is_array($file['error'])) { 
$message = ''; 
foreach ($file['error'] as $msg) { 
    $message = $msg;  
} 
} 
echo $message; 
} 
?></span> <br> 
<input name="submit" type="submit" value="Upload" /> 
<?php 
} 
?> 
</form> 
+0

具有u檢查文件上傳在Apache中...... – 2013-02-11 03:45:35

+0

是你的意思嗎?我沒有得到你。在file_uploads php.ini文件搜索 – alte 2013-02-11 03:48:11

+0

並使其作爲file_uploads =在 – 2013-02-11 03:49:39

回答

0

確保文件路徑。如果路徑是真的,你可以完成這項工作。我建議你使用exif_imagetype()函數檢查文件屬性,它比getimage大小更快更好。在最大文件問題中,您應該使用filesize()函數。在檢查之前需要確保文件已上傳?上傳的文件是$ _FILES('tmp_name')。

+0

其實我試圖改變的照片不同大小,它似乎是工作的一些照片....你知道如何使腳本上傳多張照片? – alte 2013-02-11 23:41:58