簡單PHP上傳圖片、刪除圖片實現代碼

來源:互聯網
上載者:User

上傳圖片: 複製代碼 代碼如下:if (!empty($_FILES["img"]["name"])) { //提取檔案域內容名稱,並判斷
$path=”uppic/”; //上傳路徑
if(!file_exists($path))
{
//檢查是否有該檔案夾,如果沒有就建立,並給予最高許可權
mkdir(“$path”, 0700);
}//END IF
//允許上傳的檔案格式
$tp = array(“image/gif”,”image/pjpeg”,”image/jpeg”);
//檢查上傳檔案是否在允許上傳的類型
if(!in_array($_FILES["img"]["type"],$tp))
{
echo “<script>alert(‘格式不對');history.go(-1);</script>”;
exit;
}//END IF
$filetype = $_FILES['img']['type'];
if($filetype == ‘image/jpeg'){
$type = ‘.jpg';
}
if ($filetype == ‘image/jpg') {
$type = ‘.jpg';
}
if ($filetype == ‘image/pjpeg') {
$type = ‘.jpg';
}
if($filetype == ‘image/gif'){
$type = ‘.gif';
}
if($_FILES["img"]["name"])
{
$today=date(“YmdHis”); //擷取時間並賦值給變數
$file2 = $path.$today.$type; //圖片的完整路徑
$img = $today.$type; //圖片名稱
$flag=1;
}//END IF
if($flag) $result=move_uploaded_file($_FILES["img"]["tmp_name"],$file2);
//特別注意這裡傳遞給move_uploaded_file的第一個參數為上傳到伺服器上的臨時檔案
}//END IF
//這裡再將$img的值寫入到資料庫中對應的欄位

刪除圖片: 複製代碼 代碼如下:unlink(“uppic/”.$img); //當然,變數的值是從資料庫中讀取出來的,PHP刪除圖片比ASP簡潔多了

相關文章

聯繫我們

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