欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php上传文件常见问题(基础)

程序员文章站 2022-04-26 11:02:49
...

既然上一篇文章《php上传中文文件文件名乱码问题》遇到了文件上传的问题,干脆把php上传文件时经常碰到的几个问题总结一下吧,以后用到时不用再去找了。


1.先做个最简单的上传文件

 1 html>
 2 head>
 3 meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 4 head>
 5 body>
 6 
 7 form action="upload_file.php" method="post"
 8 enctype="multipart/form-data">
 9 label for="file">Filename:label>
10 input type="file" name="file" id="file" /> 
11 br />
12 input type="submit" name="submit" value="Submit" />
13 form>
14 
15 body>
16 html>

 1 php
 2 if (($_FILES["file"]["size"] )