(1).前端文件:
<form action="upload.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" id="file" /> <br /> <input type="submit" name="submit" value="Submit" /> </form>
(2).后端文件:
move_uploaded_file($_FILES["file"]["tmp_name"], './' . $_FILES["file"]["name"]);
(3).php.ini配置
upload_max_filesize 允许上传文件的最大尺寸 我设置2048M
post_max_size 允许上传文件的最大尺寸 我设置2048M
max_execution_time 最大脚本运行时间 我设置5000
max_input_time 最大输入时间 我设置5000
memory_limit 脚本内存限制 我设置2048M
(4).web服务器配置
(4.1)nginx配置 client_max_body_size 2048m;
(4.2)apache配置 LimitRequestBody 1024000000