php 檔案上傳執行個體代碼_php執行個體

來源:互聯網
上載者:User

項目結構:

上傳首頁:

上傳效果:


fileupload.php

複製代碼 代碼如下:

<form action="" enctype="multipart/form-data" method="post"
name="uploadfile">上傳檔案:<input type="file" name="upfile" /><br>
<input type="submit" value="上傳" /></form>
<?php
//print_r($_FILES["upfile"]);
if(is_uploaded_file($_FILES['upfile']['tmp_name'])){
$upfile=$_FILES["upfile"];
//擷取數組裡面的值
$name=$upfile["name"];//上傳檔案的檔案名稱
$type=$upfile["type"];//上傳檔案的類型
$size=$upfile["size"];//上傳檔案的大小
$tmp_name=$upfile["tmp_name"];//上傳檔案的臨時存放路徑
//判斷是否為圖片
switch ($type){
case 'image/pjpeg':$okType=true;
break;
case 'image/jpeg':$okType=true;
break;
case 'image/gif':$okType=true;
break;
case 'image/png':$okType=true;
break;
}

if($okType){
/**
* 0:檔案上傳成功<br/>
* 1:超過了檔案大小,在php.ini檔案中設定<br/>
* 2:超過了檔案的大小MAX_FILE_SIZE選項指定的值<br/>
* 3:檔案只有部分被上傳<br/>
* 4:沒有檔案被上傳<br/>
* 5:上傳檔案大小為0
*/
$error=$upfile["error"];//上傳後系統返回的值
echo "================<br/>";
echo "上傳檔案名稱是:".$name."<br/>";
echo "上傳檔案類型是:".$type."<br/>";
echo "上傳檔案大小是:".$size."<br/>";
echo "上傳後系統返回的值是:".$error."<br/>";
echo "上傳檔案的臨時存放路徑是:".$tmp_name."<br/>";

echo "開始移動上傳檔案<br/>";
//把上傳的臨時檔案移動到up目錄下面
move_uploaded_file($tmp_name,'up/'.$name);
$destination="up/".$name;
echo "================<br/>";
echo "上傳資訊:<br/>";
if($error==0){
echo "檔案上傳成功啦!";
echo "<br>圖片預覽:<br>";
echo "<img src=".$destination.">";
//echo " alt=\"圖片預覽:\r檔案名稱:".$destination."\r上傳時間:\">";
}elseif ($error==1){
echo "超過了檔案大小,在php.ini檔案中設定";
}elseif ($error==2){
echo "超過了檔案的大小MAX_FILE_SIZE選項指定的值";
}elseif ($error==3){
echo "檔案只有部分被上傳";
}elseif ($error==4){
echo "沒有檔案被上傳";
}else{
echo "上傳檔案大小為0";
}
}else{
echo "請上傳jpg,gif,png等格式的圖片!";
}
}
?>

fileupload.php檔案中:
複製代碼 代碼如下:

//判斷是否為圖片
switch ($type){
case 'image/pjpeg':$okType=true;
break;
case 'image/jpeg':$okType=true;
break;
case 'image/gif':$okType=true;
break;
case 'image/png':$okType=true;
break;
}

上面是判斷檔案是否是圖片類型,更多的檔案類型,大家可以參考tomcat/conf/web.xml檔案,這裡面的檔案類型很全....

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.