本文实例为大家分享了php实现表单提交上传文件功能的具体代码,供大家参考,具体内容如下
首先创建含表单的html文件:upload.html
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>上传文件</title> </head> <body> <form action="upload.php" method="post" enctype="multipart/form-data"> <input type="file" name="file"/> <input type="submit" value="提交"> </form> </body> </html>
再创建服务端文件:upload.php
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>显示文件</title> </head> <body> <?php //print_r($_FILES); //获取到临时文件 $file=$_FILES['file']; //获取文件名 $fileName=$file['name']; //移动文件到当前目录 move_uploaded_file($file['tmp_name'],$fileName); //显示文件 echo "<img src='https://www.atool.online/article/$fileName'>"; ?> </body> </html>
点击提交后呈现出文件:
本文已被整理到了《php文件上传操作汇总》 ,更多精彩内容,欢迎大家学习阅读。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持阿兔在线工具。