我們下面為大家具體講解舉例來說:用戶可上傳一種展品並可為該展品上傳一張縮略圖,那麼縮略圖文件限制類型可能為jpg,,gif,png等,而展品文件限制類型可能為mov,avi,mpeg等,而圖片大小可能限制為100KB,音頻視頻大小可能限制為2MB。類代碼如下:
- class Upload
- {
- public $InputName; // 文件上傳域控件名
- /**
- * 允許上傳的文件類型
- * 形式為 array('image/jpeg', 'image/png', 'image/gif') 或包含此類數組的數組(與每個上傳域控件對應)
- */
- public $FileType;
- /**
- * 最大上傳文件大小(單位:byte)
- * 形式為 array('image' => $size, 'audio' => $size)(表示每種應用文件類型所對應的上傳大小) 或包含此類數組的數組(與每個上傳域控件對應)或一數值(表示所有上傳文件均限制在此大小之下)
- */
- public $FileMaxSize;
- public $FileSavePath; // 文件保存路徑(可為數組形式,表示不同上傳域上傳文件到不同的路徑)
- public $FileSaveName; // 文件保存名(不包含後綴名)(可為數組形式,表示不同上傳域上傳文件保存的不同名稱)
- public $NoteFileFalse; // 文件錯誤提示
- public $NoteFileType; // 文件類型不符提示
- public $NoteFileSize; // 文件大小超出提示
- /* 上傳文件並返回文件名信息(包含後綴名) */
- public function UploadFile()
- {
- $this->CheckFile(); // 檢驗文件
- $file = $_FILES[$this->InputName];
- $file_save_full_name = array(); // 文件保存名(包含後綴名)
- foreach ($file['name'] as $key => $name)
- {
- if (!empty($name)) // 文件不為空
- {
- /* 確定文件保存路徑 */
- if (is_array($this->FileSavePath))
- {
- $file_save_path = $this->FileSavePath[$key];
- }
- else
- {
- $file_save_path = $this->FileSavePath;
- }
- /* 確定文件保存名(不包含後綴名) */
- if (is_array($this->FileSaveName))
- {
- $file_save_name = $this->FileSaveName[$key];
- }
- else
- {
- $file_save_name = $this->FileSaveName;
- }
- /* 開始保存 */
- $this->CreatePath($file_save_path); // 如果路徑不存在則創建路徑
- move_uploaded_file($file["tmp_name"][$key], $file_save_path . $file_save_name . $this->GetSuffix($file['name'][$key]));
- $file_save_full_name[] = $file_save_name . $this->GetSuffix($file['name'][$key]);
- }
- else
- {
- $file_save_full_name[] = null;
- }
- }
- unlink($file);
- /* 如果只有一個文件,則返回單個文件名 */
- if (count($file_save_full_name) == 1)
- {
- $file_save_full_name = $file_save_full_name[0];
- }
- return $file_save_full_name;
- }
- /* 檢驗文件 */
- private function CheckFile()
- {
- $file = $_FILES[$this->InputName];
- foreach ($file['name'] as $key => $name)
- {
- if (!empty($name)) // 文件不為空
- {
- $type = $file['type'][$key];
- $size = $file['size'][$key];
- $error = $file['error'][$key];
- /* 確定允許上傳文件類型列表 */
- if (is_array($this->FileType[0]))
- {
- $file_type = $this->FileType[$key];
- }
- else
- {
- $file_type = $this->FileType;
- }
- /* 確定最大上傳文件大小 */
- if (is_array($this->FileMaxSize))
- {
- $file_max_size_key = explode('/', $type);
- $file_max_size_key = $file_max_size_key[0];
- if (is_array($this->FileMaxSize[0]))
- {
- $file_max_size = $this->FileMaxSize[$key][$file_max_size_key];
- }
- else
- {
- $file_max_size = $this->FileMaxSize[$file_max_size_key];
- }
- }
- else
- {
- $file_max_size = $this->FileMaxSize;
- }
- /* 文件錯誤 */
- if ($error > 0)
- {
- die($name . $this->NoteFileFalse);
- }
- /* 文件大小超過最大上傳文件大小 */
- if ((!is_null($file_max_size) && $size > $file_max_size) || ($size == 0))
- {
- die($name . $this->NoteFileSize);
- }
- /* 文件類型不符 */
- if (!in_array($type, $file_type))
- {
- die($name . $this->NoteFileType);
- }
- }
- }
- }
- /* 獲取文件後綴名 */
- private function GetSuffix($fileName)
- {
- return substr($fileName, strrpos($fileName, "."));
- }
- /* 如果路徑不存在則創建路徑 */
- private function CreatePath($filePath)
- {
- if (!file_exists($filePath))
- {
- mkdir($filePath);
- }
- }
- }
PHP通用文件上傳類的使用方法:接著以本文開頭所舉例子來說明該類的調用方法(呵呵,調用是很方便的):
$upload_obj = new Upload(); // 文件上傳對象
$upload_obj->InputName = 'upload_test'; // 文件上傳域控件名
$upload_obj->FileType = array(array('image/jpeg', 'image/png'), array('audio/mpeg', 'video/x-msvideo')); // 允許上傳的文件類型
$upload_obj->FileMaxSize = array('image' => 100 * 1024, 'audio' => 2 * 1024 * 1024, 'video' => 2 * 1024 * 1024);
$upload_obj->FileSavePath = array('upload/files/s/', 'upload/files/z/');
$upload_obj->FileSaveName = time();
$upload_obj->NoteFileFalse = '文件錯誤';
$upload_obj->NoteFileType = '文件類型不符';
$upload_obj->NoteFileSize = '文件大小超出';
$file_save_full_name = $upload_obj->UploadFile(); // 上傳並獲取文件全名(基本名加擴展名)(如果是多個文件則為數組形式)(全名用於在數據庫中存儲信息)
總結:就此可輕松實現若干文件上傳,其實PHP通用文件上傳類歸根結底用到了PHP組文件上傳,要注意的就是控件名的name後別忘了加上[],這樣的好處就是遇到多個文件上傳時就不用在調用層進行循環或一個一個處理上傳了,我們的應用也因此而輕松。