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>
這裡有幾個要注意的地方,先看這句話