搞個了圖片上傳,死活不好使,後來發現是php參數配置的問題。
下面總結下與文件上傳有關的php參數,備忘之~
所有這些參數都在php.ini中設置。
1.file_uploads
設為On,允許通過HTTP上傳文件
2.upload_tmp_dir
文件上傳至服務器時用於臨時存儲的目錄,如果沒指定,系統會使用默認的臨時文件夾(我的機器是/tmp)。
3.upload_max_filesize
允許上傳文件大小的最大值,默認為2M。
4.post_max_size
Php可接收的post數據的最大值(包括表單裡的所有值的總合),默認為8M。
5.memory_limit
每個php所最占的最大內存數,這個值要大於允許上傳的文件大小。
6.max_execution_time
每個php運行的最長時間(秒),默認30秒。
7.max_input_time
Php解析POST/GET數據的最長時間(秒),默認60秒。This sets the maximum time in seconds a scripts is allowed to parse input data, like POST and GET.It is measured from the mement of receiving all data on the server to the start of script execution.