主頁 > 知識(shí)庫 > Laravel框架文件上傳功能實(shí)現(xiàn)方法示例

Laravel框架文件上傳功能實(shí)現(xiàn)方法示例

熱門標(biāo)簽:地下城堡2圖九地圖標(biāo)注 西區(qū)企業(yè)怎么做地圖標(biāo)注入駐 保定crm外呼系統(tǒng)運(yùn)營商 智能電話機(jī)器人排名前十名南京 海南人工外呼系統(tǒng)有效果嗎 阿里云400電話申請(qǐng)加工單 抖音有個(gè)地圖標(biāo)注是什么意思 七魚外呼系統(tǒng)停用嗎 九江外呼系統(tǒng)

本文實(shí)例講述了Laravel框架文件上傳功能實(shí)現(xiàn)方法。分享給大家供大家參考,具體如下:

  • 以Laravel 5.2.45 框架為主,進(jìn)行文件上傳功能的實(shí)現(xiàn)如下:

實(shí)現(xiàn)步驟:

(1). 配置文件修改

打開 config/filesystems.php 文件

在 ‘disks' 數(shù)組中添加如下代碼

//自定義
'uploads' => [
  'driver' => 'local',
  //'root' => storage_path('app/uploads'),
  'root' => public_path('uploads/'.date('Ymd')),
],

(2).前端視圖 upload.blade.php

根據(jù)需求,設(shè)計(jì)簡(jiǎn)單的視圖,核心代碼如下

div class="panel panel-default">
    div class="panel-heading">文件上傳/div>
    div class="panel-body">
      form class="form-horizontal" role="form" method="POST" action="" enctype="multipart/form-data">
        {{ csrf_field() }}
        div class="form-group">
          label for="file" class="col-md-4 control-label">Hello world/label>
          div class="col-md-6">
            input id="file" type="file" class="form-control" name="source">
          /div>
        /div>
        div class="form-group">
          div class="col-md-6 col-md-offset-4">
            button type="submit" class="btn btn-primary">
              i class="fa fa-btn fa-sign-in">/i> 上傳
            /button>
          /div>
        /div>
      /form>
    /div>
/div>

(3). 控制器核心代碼

use Illuminate\Http\Request;
use Illuminate\Support\Facades\Storage;
//上傳文件 功能實(shí)現(xiàn)方法
public function upload(Request $request){
    if ($request->isMethod('POST')){
      $file = $request->file('source');
      //判斷文件是否上傳成功
      if ($file->isValid()){
        //原文件名
        $originalName = $file->getClientOriginalName();
        //擴(kuò)展名
        $ext = $file->getClientOriginalExtension();
        //MimeType
        $type = $file->getClientMimeType();
        //臨時(shí)絕對(duì)路徑
        $realPath = $file->getRealPath();
        $filename = uniqid().'.'.$ext;
        $bool = Storage::disk('uploads')->put($filename,file_get_contents($realPath));
        //判斷是否上傳成功
        if($bool){
          echo 'success';
        }else{
          echo 'fail';
        }
      }
    }
    return view('upload');
}

(4). 執(zhí)行上述方法結(jié)果

通過調(diào)用上述方法,正確執(zhí)行后,上傳的文件將出現(xiàn)在 public/uploads 的對(duì)應(yīng)日期目錄下

更多關(guān)于Laravel相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Laravel框架入門與進(jìn)階教程》、《php優(yōu)秀開發(fā)框架總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》

希望本文所述對(duì)大家基于Laravel框架的PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • Laravel中使用阿里云OSS Composer包分享
  • Laravel框架實(shí)現(xiàn)文件上傳的方法分析
  • 利用laravel+ajax實(shí)現(xiàn)文件上傳功能方法示例
  • laravel 實(shí)現(xiàn)阿里云oss文件上傳功能的示例

標(biāo)簽:九江 昭通 韶關(guān) 梅河口 遼陽 甘肅 涼山 十堰

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Laravel框架文件上傳功能實(shí)現(xiàn)方法示例》,本文關(guān)鍵詞  Laravel,框架,文件,上傳,功能,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Laravel框架文件上傳功能實(shí)現(xiàn)方法示例》相關(guān)的同類信息!
  • 本頁收集關(guān)于Laravel框架文件上傳功能實(shí)現(xiàn)方法示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章