laravel圖片/頭像上傳通用方法

郭周園發表於2018-08-30
if($_FILES["file"]["error"]!==1)
{
    return redirect()->route("change_password")->with("msg","頭像上傳出錯 錯誤碼:".$_FILES["file"]["error"]);
}
else
{
    //沒有出錯
    //加限制條件
    //判斷上傳檔案型別為png或jpg且大小不超過1024000B
    if(($_FILES["file"]["type"]=="image/png"||$_FILES["file"]["type"]=="image/jpeg")&&$_FILES["file"]["size"]<1024000)
    {
        //地址檔名拼接
        $type=explode(".",$_FILES["file"]["name"]);
        $filename ="./upload/".$user_id.`-`.date(`YmdHis`,time()).mt_rand(1000,9999).`.`.$type[1];
        //轉碼,把utf-8轉成gb2312,返回轉換後的字串, 或者在失敗時返回 FALSE。
        $filename =iconv("UTF-8","gb2312",$filename);
        //檢查檔案或目錄是否存在
        if(file_exists($filename))
        {
            return redirect()->route("change_password")->with("msg","圖片已存在");
        }
        else
        {
            $dir = `./upload`;
            is_dir($dir) OR mkdir($dir, 0777, true);
            //儲存檔案,   move_uploaded_file 將上傳的檔案移動到新位置
            move_uploaded_file($_FILES["file"]["tmp_name"],$filename);//將臨時地址移動到指定地址
            if($staff[`image`]!=null){
                if(file_exists($staff[`image`])){
                    unlink($staff[`image`]);
                }
            }
            $staff->image=$filename;
            if($staff->save()){
                return redirect()->route("change_password")->with("msg","頭像上傳成功");
            }
        }
    }
    else
    {
        return redirect()->route("change_password")->with("msg","圖片型別只能為JPG或PNG,且大小不能超過1M");
    }
}


相關文章