php入門學習知識點三 PHP上傳

來源:互聯網
上載者:User

一、上傳表單的HTML代碼 複製代碼 代碼如下:<form action="UpLoad.php" method="post" enctype="multipart/form-data" name="upFrm">
<input type="file" name="Imgs" id="Imgs">
<input type="submit" name="subBtn" value="上傳" >
</form>

注意事項:1、action是上傳的新
       2、enctype這個屬性要寫成 “multipart/form-data”
二、PHP代碼 複製代碼 代碼如下:<?php
if(is_uploaded_file($_FILES["Imgs"]["tmp_name"])){
$phpupfile=$_FILES["Imgs"];
//輸出上傳檔案的數組結構;
print_r($phpupfile);
//輸出上傳檔案的各類資訊
echo $phpupfile["size"]."<br>"; //檔案名稱
echo $phpupfile["type"]."<br>"; //檔案類型
echo $phpupfile["tmp_name"]."<br>"; //昨時檔案名稱包含路徑
echo $phpupfile["name"]."<br>"; //上傳的檔案名稱
/*
* 上傳的錯誤資訊
* 0 代表成功上傳,
* 1,2 代表超過了設定的最大上傳值
* 3 代表只有部分上傳
* 4 代表沒有檔案被上傳
* 5 代表上傳檔案大小為0
*/
echo $phpupfile["error"]."<br>";
//上傳函數 (其時在提交表單後,已將上傳的檔案儲存在伺服器的臨時檔案夾內,這時需要將其移動到網站的指定檔案夾內)
move_uploaded_file($phpupfile["tmp_name"],$phpupfile["name"]); //將上傳的檔案儲存到指定的檔案夾
/*
*以下部分是附加部分
*/
//判斷檔案是否存在 1代表存在,0代表未找到
echo 'This File is exists:'.file_exists($phpupfile["name"]).'<br>'; //查詢檔案或目錄是否存在
//unlink 刪除檔案
echo '刪除檔案:'.unlink($phpupfile["name"]).';1 為刪除成功,0為刪除失敗';
//mkdir 建立檔案夾
if(file_exists('pic')==FALSE){
mkdir("pic");
}
if(file_exists('pic/ts')==FALSE){
mkdir("pic/ts");
}
//rmdir 刪除檔案夾
if(file_exists('pic/ts')==FALSE){
rmdir('pic/ts');
}
//rename 重新命名
rename("guitar11-hp-sprite.png", "1.png");
echo "<br>";
echo 'This File is exists:'.file_exists($phpupfile["name"]).'<br>';
}
?>

注意點:1、$_FILES["Imgs"] 這個Imgs就是你HTML代碼中所定義的控制項名稱

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.