php 使用html5实现多文件上传实例
首先向大家介绍一下html5中file的multiple属性
定义和用法
multiple属性规定输入字段可选择多个值。如果使用该属性,则字段可接受多个值。
实例:
<formaction="demo_form.asp"method="get"> Selectimages:<inputtype="file"name="img"multiple="multiple"/> <inputtype="submit"/> </form>
上面实例中的inputfile可接受多个文件上传字段。
了解了html5中file的multiple属性,下面我们开始讲解使用html5实现多文件上传。
实例代码:
html:
<!DOCTYPEhtml> <html> <head> <metacharset="UTF-8"> </head> <body> <formaction="my_parser.php"method="post"enctype="multipart/form-data"> <p><inputname="upload[]"type="file"multiple="multiple"/></p> <inputtype="submit"value="Uploadallfiles"> </form> </body> </html>
php代码:
for($i=0;$i<count($_FILES['upload']['name']);$i++){ //Getthetempfilepath $tmpFilePath=$_FILES['upload']['tmp_name'][$i]; //Makesurewehaveafilepath if($tmpFilePath!=""){ //Setupournewfilepath $newFilePath="./uploadFiles/".$_FILES['upload']['name'][$i]; //Uploadthefileintothetempdir if(move_uploaded_file($tmpFilePath,$newFilePath)){ //Handleothercodehere } } }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!