本文實(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文件上傳功能的示例