這篇文章主要介紹了使用PHP接受檔案並獲得其後綴名的方法,作者著重提到了其中$_FILES全局變數的使用,需要的朋友可以參考下
HTML的form表單
用html的表單模擬一個檔案上傳的post請求,程式碼如下:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>File Upload</title> </head> <body> <form enctype="multipart/form-data" action="test.php" method="POST"> <input type="hidden" name="MAX_FILE_SIZE" value="30000" /> Send this File:<input name="userfile" type="file"/> <input type="submit" value="Send File" /> </form> </body> </html>
注意:
要確保檔案上傳表單的屬性是enctype="multipart/form- data",否則檔案上傳不了
PHP
首先,需要解釋一下PHP的全域變數$_FILES,此陣列包含了所有上傳的檔案資訊
#$_FILE['userfile']['name'] : 客戶端機器檔案的原名稱
$_FILE['userfile']['type'] : 檔案的MIME類型
$_FILE['userfile']['size'] : 已上傳的檔案大小
$_FILE['userfile' ]['tmpname'] : 檔案上傳後在伺服器儲存的暫存檔案名稱
#$_FILE['userfile']['error'] : 和該檔案上傳的錯誤代碼
想法
1、產生40位元的隨機字串作為檔案名稱
2、根據檔案是圖片還是語音轉存到不同的檔案位置
3、暫時不做檔案大小和檔案類型的校驗
function processFile($files, $type) { $uploadName = null; foreach ($files as $name => $value) { $originalName = $value['name']; $arr = explode(".", $originalName); $postfix = $arr[count($arr) - 1]; $tmpPath = $value['tmp_name']; $tmpType = $value['type']; $tmpSize = $value['size']; } $newname = EhlStaticFunction::generateRandomStr(40).".".$postfix; switch ($type) { case 1 : // 处理声音文件 $destination = VIDEOUPLOADDIR.$newname; break; case 2 : // 处理图像文件 $destination = IMAGEUPLOADDIR.$newname; break; } move_uploaded_file($tmpPath, $destination); }
而取得所上傳檔案的字尾名稱則可以使用一下程式碼:
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <meta name="keywords" content=" keywords" /> <meta name="description" content="description" /> </head> <body> <form method="post" action="" enctype="multipart/form-data"> <input type="file" name="upfile" size="20" /> <input type="submit" name="submit" value="submit" /> </form> </body> </html>
PHP
<?PHP if(isset($_POST['submit'])) { $string = strrev($_FILES['upfile']['name']); $array = explode('.',$string); echo $array[0]; } ?>
結果範例:
#總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。
相關推薦:
PHP使用preg_split和explode實作分割textarea存放內容的方法
PHP實作基於Cookie設定使用者30分鐘未操作自動退出功能的方法
以上是PHP接受檔案並取得後綴名的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!