skip to main
|
skip to sidebar
ICE NoteBook
2009年7月14日 星期二
PHP - 檔案上傳$_FILES error錯誤說明
使用PHP上傳檔案是非常方便的,相信用過ASP的人都有同感吧
但是無法上傳時就會需要取得錯誤資訊,我們可以使用以下方式印出上傳檔案的所有資訊
echo "
"; var_dump($_FILES); echo "
";
這時畫面上會秀出類似以下資訊
array(1) { ["upFile"]=> array(5) { ["name"]=> string(15) "elder200907.zip" ["type"]=> string(15) "application/zip" ["tmp_name"]=> string(14) "/tmp/phpr8syQq" ["error"]=> int(0) ["size"]=> int(1679389) } }
如果"error"不是0的時候,代表有問題,那麼我們就可以參考以下狀況
switch ( $_FILES [ $field ][ 'error' ]){ case 1: // 檔案大小超出了伺服器上傳限制 UPLOAD_ERR_INI_SIZE $this ->setError( "The file is too large (server)." ); break ; case 2: // 要上傳的檔案大小超出瀏覽器限制 UPLOAD_ERR_FORM_SIZE $this ->setError( "The file is too large (form)." ); break ; case 3: //檔案僅部分被上傳 UPLOAD_ERR_PARTIAL $this ->setError( "The file was only partially uploaded." ); break ; case 4: //沒有找到要上傳的檔案 UPLOAD_ERR_NO_FILE $this ->setError( "No file was uploaded." ); break ; case 5: //伺服器臨時檔案遺失 $this ->setError( "The servers temporary folder is missing." ); break ; case 6: //檔案寫入到站存資料夾錯誤 UPLOAD_ERR_NO_TMP_DIR $this ->setError( "Failed to write to the temporary folder." ); break ; case 7: //無法寫入硬碟 UPLOAD_ERR_CANT_WRITE $this ->setError( "Failed to write file to disk." ); break ; case 8: //UPLOAD_ERR_EXTENSION $this ->setError( "File upload stopped by extension." ); break ; } }
上面的錯誤資訊是網路搜尋來的,如有錯誤請盡快告訴我喔^^
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
關於我自己
Ic€
Taiwan
此網誌是為了年紀愈來愈大的我所創立的,感覺記憶力愈來愈差,所以乾脆把網路上搜尋到或者自己寫的東西做個記錄,以免以後需要時找不到,如果原文作者看到自己的文章感到不悅時,請盡速通知我,我會盡快刪除文章,感恩啦
檢視我的完整簡介
文章分類
AS3
ASP
ASP Class
Blog
CSS
Flash
int
Integer
Java
JavaScript
jQuery
Linux
MS SQL
PEAR
Perl
PHP
PHP Class
split
String
T-SQL
URL
Wamp
網誌存檔
►
2010
(7)
►
12月
(2)
►
9月
(2)
►
6月
(1)
►
5月
(1)
►
2月
(1)
▼
2009
(20)
►
10月
(2)
►
9月
(4)
►
8月
(1)
▼
7月
(2)
PHP - 使用parse_url, parse_str 來解析網址
PHP - 檔案上傳$_FILES error錯誤說明
►
5月
(1)
►
4月
(3)
►
3月
(1)
►
2月
(3)
►
1月
(3)
►
2008
(15)
►
11月
(2)
►
10月
(1)
►
9月
(2)
►
8月
(6)
►
7月
(4)
計數器
My Friends
ApurA's Yuujintyou
Jim Labs
shan711017的地盤
you are my amusement park
──═╪★完美的愛情使人意志薄弱 不完美的愛情讓人傷心難過
夏季含羞草
新‧夢想
日光節約時間
騎馬桶撞飛碟的部落
沒有留言:
張貼留言