主頁 > 知識庫 > TP5(thinkPHP5框架)基于bootstrap實現(xiàn)的單圖上傳插件用法示例

TP5(thinkPHP5框架)基于bootstrap實現(xiàn)的單圖上傳插件用法示例

熱門標(biāo)簽:400電話蘭州申請請 余姚電話機(jī)器人 百度地圖怎樣標(biāo)注圖標(biāo) 廣東廣州在怎么申請400電話 咸寧銷售電銷機(jī)器人系統(tǒng) 外呼系統(tǒng)能給企業(yè)帶來哪些好處 百度地圖標(biāo)注偏差 開發(fā)地圖標(biāo)注類網(wǎng)站 電銷機(jī)器人問門薩維品牌my

本文實例講述了TP5(thinkPHP5框架)基于bootstrap實現(xiàn)的單圖上傳插件用法。分享給大家供大家參考,具體如下:

1-引入js文件和css文件

!--圖片上傳-->
link href="/public/static/css/bootstrap.min.css" rel="external nofollow" rel="stylesheet">
link href="/public/static/css/fileinput.css" rel="external nofollow" media="all" rel="stylesheet" type="text/css" />
script src="/public/static/js/jquery-2.0.3.min.js">/script>
script src="/public/static/js/fileinput.js" type="text/javascript">/script>
script src="/public/static/js/fileinput_locale_de.js" type="text/javascript">/script>
script src="/public/static/js/bootstrap.min.js" type="text/javascript">/script>

2-html代碼

div class="form-group">
  label for="inputPassword3" class="col-sm-2 control-label">輪播圖/label>
  div class="col-sm-10">
    input class="file" type="file" name="img">
  /div>
/div>

3-控制器

public function add() {
 $file = $request->file("img");
//聲明一個空的文件路徑
$imgPath = "";
//移動文件到框架應(yīng)用更目錄的public/uploads/
if ($file) {
  $info = $file->move(ROOT_PATH . 'public' . DS . 'upload' . DS . 'top_bar' . DS . date('Y') . DS . date('m-d'),md5(microtime(true)));
  if ($info) {
    $imgPath = "/public/upload/top_bar/" . date('Y') . '/' . date('m-d') . '/' . $info->getSaveName();
       }
   } else {
  //錯誤提示用戶
  return $this->error($file->getError());
    }
//賦值
$data["thumb_url"] = $imgPath;
$dataId = Db::name('top_bar')->insertGetId($data);
}

更多的功能和插件 參考地址:https://www.kancloud.cn/he_he/thinkphp5/787173

更多關(guān)于thinkPHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《ThinkPHP入門教程》、《thinkPHP模板操作技巧總結(jié)》、《ThinkPHP常用方法總結(jié)》、《codeigniter入門教程》、《CI(CodeIgniter)框架進(jìn)階教程》、《Zend FrameWork框架入門教程》及《PHP模板技術(shù)總結(jié)》。

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

您可能感興趣的文章:
  • springboot整合jquery和bootstrap框架過程圖解
  • python設(shè)計微型小說網(wǎng)站(基于Django+Bootstrap框架)
  • 在Bootstrap開發(fā)框架中使用dataTable直接錄入表格行數(shù)據(jù)的方法
  • React BootStrap用戶體驗框架快速上手
  • Bootstrap框架建立樹形菜單(Tree)的實例代碼
  • 基于Bootstrap框架菜鳥入門教程(推薦)
  • 使用vue框架 Ajax獲取數(shù)據(jù)列表并用BootStrap顯示出來
  • BootStrap前端框架使用方法詳解

標(biāo)簽:衡陽 重慶 十堰 巴彥淖爾 鷹潭 麗江 臨沂 銅陵

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