轉自: http://blog.sina.com.cn/s/blog_6c739e63010137ui.htmlphp
php手冊上傳錯誤資料:http://php.net/manual/zh/features.file-upload.errors.phphtml
http://php.net/upload-max-filesizepost
Maximum number of files that can be uploaded via a single requestui
max_file_uploads = 20 :單個請求時,容許上傳的最大文件數 ;.net
Maximum allowed size for uploaded files.htm
upload_max_filesize = 64M,容許上傳你的最大文件大小 ; blog
; Maximum size of POST data that PHP will accept.
; Its value may be 0 to disable the limit. It is ignored if POST data reading
; is disabled through enable_post_data_reading.內存
post_max_size = 3M, 表單容許上傳的最大文件大小,官方解釋:http://php.net/post-max-sizeget
文件上傳的其餘注意事項文件上傳
在上傳大文件時,你會有上傳速度慢的感受,當超過必定的時間,會報腳本執行超過30秒的錯誤,這是由於在php.ini配置文件中max_execution_time配置選項在做怪,其表示每一個腳本最大容許執行時間(秒),0 表示沒有限制。你能夠適當調整max_execution_time的值,不推薦設定爲0。