본 글에 소개된 내용은 PHP 이미지 업로드 예시입니다. 이제 공유해드리겠습니다. 도움이 필요한 친구들이 참고하시면 됩니다
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <form action="03.php" method="post" enctype="multipart/form-data"> <p> 图片: <input type="file" name="pic" id=""> </p> <input type="submit" value="提交"> </form> </body> </html>
<?php //print_r($_FILES); //将临时文件 移动到其他的位置 //生成随机文件名 $fname = rand(10000,99999); //获取文件后缀 $ext = strrchr($_FILES['pic']['name'], '.');//.jpg //创建目录 $path = './'.date('Y/m/d'); if(!is_dir($path)) { mkdir($path , 0777 , true); } //move_uploaded_file 移动上传文件 echo move_uploaded_file($_FILES['pic']['tmp_name'], $path . '/' . $fname . $ext)?'ok':'fail'; //2015/01/25/hua.jpg ?>
관련 추천:
003 - CI는 클래스 라이브러리의 CodeIgniter 리소스를 사용합니다
위 내용은 004-PHP 이미지 업로드 예시의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!