目录结构如下,其中包含两个代码文件和一个uploads文件夹(用于存放上传的文件)
index.php
该代码实现html页面,包括需要填写学号和姓名,上传文件大小不得超过20M
<form action="fileSystem.php" method="post" enctype="multipart/form-data"><h3 style="color: red">文件大小不要超过20M</h3><hr>请输入学号:<input type="text" name="num"><br>请输入姓名:<input type="text" name="username"><br><input type="hidden" name="MAX_FILE_SIZE" value="25000000" /><input type="file" name="myPicture[]" size= "25" maxlength="100"><br><br><input type="submit" value="提交">
</form>
fileSystem.php
该代码处理文件上传逻辑
<?phpheader("Content-type=text/html;charset=utf-8");if (empty($_POST)) {exit("提交的表单数据超过post_max_size的配置");}// 转存post提交的各个变量$num = $_POST['num'];$username = $_POST['username'];$arr = $_FILES['myPicture'];$file =array();for ($i=0; $i < count($arr['name']); $i++) { $file[$i]['name'] = $arr['name'][$i];$file[$i]['type'] = $arr['type'][$i];$file[$i]['tmp_name'] = $arr['tmp_name'][$i];$file[$i]['error'] = $arr['error'][$i];$file[$i]['size'] = $arr['size'][$i];}for ($i=0; $i < count($file); $i++) { switch ($file[$i]['error']) {default:echo "Failed upload";case 0: $fileName = $file[$i]['name'];$fileTemp = $file[$i]['tmp_name'];// 文件名称合成:uploads目录下,学号+姓名+文件后缀// 其中文件后缀使用了php字符串处理的几个方法,主要是通过判断"."的位置获取后缀名$destination = "uploads/" . $num . $username . substr($file[$i]['name'], strpos($file[$i]['name'], ".")) ;move_uploaded_file($fileTemp, $destination);echo "Successful upload";break;case 1:echo "php.ini upload_max_filesize is to small";break;case 2:echo "upload file is to large";break;case 3:echo "only part is ok";break;case 4:echo "no charge file";break;} }
?>
需要注意的是,php文件上传有诸多控制,需要修改相关参数
-
源代码
<input type="hidden" name="MAX_FILE_SIZE" value="25000000" />
-
php相关配置文件 php.ini文件
max_execution_time = 30,每个脚本运行的最长时间max_input_time = 60,每个脚本可以消耗的时间
memory_limit = 128M,脚本运行最大消耗的内存,-1为无限制
post_max_size = 8M,表单提交最大数据 -
Apache或者Nginx相关配置文件
Apahce目录下的httpd.conf文件添加LimitRequestBody 31457280
即30M=30*1024*1024
Nginx目录下的nginx.conf文件添加client_max_body_size 30M;