php实现上传文件并替换的方法:首先建立两个文件,分别是“change.html”和“change.php”;然后用“strrchar()”处理文件;接着调用判断文件类型的函数,并将其转化为小写;最后实现上传并替换文件即可。
本文操作环境:windows7系统、PHP7.1版,DELL G3电脑
php如何实现上传图片文件,并替换
首先建立两个文件: change.html 和 change.php
change.html 文件的表单代码如下:
<html> <head> <title>change file example.</title> <meta charset="UTF-8"> </head> <body> <form method="post" action="changefile.php" enctype="multipart/form-data"> <table border=0 cellspacing=0 cellpadding=0 align=center width="100%"> <tr> <td width=55 height=20 align="center"> <input type="hidden" name="MAX_FILE_SIZE" value="2000000" /> 文件: </td> <td> <input name="file" type="file" /> <input type="submit" name="submit" value="submit" /> </td> </tr> </table> </form> </body> </html>
这里有几个要注意的地方,首先看这句