本篇文章介紹的內容是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中文網其他相關文章!