PHP에서 이미지를 업로드하고 바꾸는 방법: 먼저 "change.html" 및 "change.php" 파일을 만든 다음 파일 형식이 이미지 형식인지 확인하고, 그렇다면 파일을 업로드하고 지정된 파일을 바꾸세요. ; 마지막으로 파일 유형 함수를 결정하고 이를 소문자로 변환하기 위해 호출합니다.
권장: "PHP 비디오 튜토리얼"
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>
여기서 주의할 점이 몇 가지 있습니다. 먼저