主頁 > 知識(shí)庫 > Bootstrap+PHP實(shí)現(xiàn)多圖上傳功能實(shí)例詳解

Bootstrap+PHP實(shí)現(xiàn)多圖上傳功能實(shí)例詳解

熱門標(biāo)簽:電話機(jī)器人銷售主要負(fù)責(zé)什么 四川保險(xiǎn)智能外呼系統(tǒng)供應(yīng)商 福建銀行智能外呼系統(tǒng)價(jià)格 地圖標(biāo)注專員怎么樣 遼寧ai電銷機(jī)器人價(jià)格 上海做外呼線路的通信公司 長沙做地圖標(biāo)注公司 房產(chǎn)中介用的是什么外呼系統(tǒng) 寧波外呼營銷系統(tǒng)

使用bootstrap界面美觀,可預(yù)覽,可拖拽上傳,可配合ajax異步或同步上傳,下面是效果圖:

前端代碼:fileinput.html

!DOCTYPE html>
!-- release v4.1.8, copyright 2014 - 2015 Kartik Visweswaran -->
html lang="en">
 head>
  meta charset="UTF-8"/>
  title>bootstrap多圖上傳/title>
  link href="/public/index/fileinput/css/bootstrap.min.css" rel="external nofollow" rel="stylesheet">
  link href="/public/index/fileinput/css/fileinput.css" rel="external nofollow" media="all" rel="stylesheet" type="text/css" />
  script src="/public/index/fileinput/js/jquery-2.0.3.min.js">/script>
  script src="/public/index/fileinput/js/fileinput.js" type="text/javascript">/script>
  script src="/public/index/fileinput/js/bootstrap.min.js" type="text/javascript">/script>
  !-- 中文化 -->
  script src="/public/index/fileinput/js/fileinput_locale_zh.js" type="text/javascript">/script>
 /head>
 body>
  div class="container kv-main">   
   br>
   form enctype="multipart/form-data">    
    div class="form-group">
     !-- 初始化插件 -->
     input id="file-1" type="file" multiple class="file" data-overwrite-initial="false" data-min-file-count="2" name="images">
    /div>
    
   /form>
  /div>
 /body>
 script>
 // 初始化filleinput控件 第一次初始化
 function initFileInput(ctrlName, uploadUrl){
  var control = $('#'+ctrlName);
  control.fileinput({
   language: 'zh', //設(shè)置語言
   uploadUrl:uploadUrl, //上傳的地址
   allowedFileExtensions:['jpg','png'], //接收的文件后綴
   showUpload:true, //是否顯示上傳按鈕
   showCaption:false, //是否顯示標(biāo)題
   maxFileSize: 1000, //圖片最大尺寸kb 為0不限制
   maxFilesNum: 3,  //最多上傳圖片
   overwriteInitial: false,//不覆蓋已上傳的圖片
   browseClass: "btn btn-info", //按鈕樣式 
   dropZoneEnabled: true,//是否顯示拖拽區(qū)域
   previewFileIcon: "i class='glyphicon glyphicon-king'>/i>",
   msgFilesTooMany: "選擇上傳的文件數(shù)量({n}) 超過允許的最大數(shù)值{m}!",
  });
 }
 //初始化fileinput控件,第一次初始化 (控件id,上傳地址)
 initFileInput("file-1", "uploadImg");

 // 監(jiān)聽事件
 $("#file-1").on("fileuploaded", function (event, data, previewId, index) {
  // 上傳地址
  console.log(data);
 });
 /script>
/html>

后臺(tái)代碼:

 /*
 * bootst多圖上傳
 */
 public function fileinput()
 {
  return $this->fetch();
 }
 public function uploadImg()
 {
  // var_dump($_FILES);
  // 獲取表單上傳文件 
  $file = request()->file('images');
  // 移動(dòng)到框架應(yīng)用根目錄/public/uploads/img 目錄下
  $info = $file->move(ROOT_PATH . 'public' . DS . 'uploads/img');
  if($info){
   // 成功上傳后 獲取上傳信息
   $data['response'] = $info->getSaveName();
   return json($data);
   //圖片上傳成功,以下可對(duì)數(shù)據(jù)庫操作
   // ......
  }else{
   // 上傳失敗獲取錯(cuò)誤信息
   echo $file->getError();
  }
 }

總結(jié)

以上所述是小編給大家介紹的Bootstrap+PHP實(shí)現(xiàn)多圖上傳功能實(shí)例詳解,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

您可能感興趣的文章:
  • thinkphp5使用bootstrapvalidator進(jìn)行異步驗(yàn)證郵箱的示例
  • PHP實(shí)現(xiàn)登錄注冊(cè)之BootStrap表單功能
  • thinkphp框架page類與bootstrap分頁(美化)
  • Bootstrap php制作動(dòng)態(tài)分頁標(biāo)簽
  • ThinkPHP 整合Bootstrap Ajax分頁樣式
  • Thinkphp和Bootstrap結(jié)合打造個(gè)性的分頁樣式(推薦)
  • php bootstrap實(shí)現(xiàn)簡單登錄

標(biāo)簽:延安 工商登記 宿遷 澳門 宜春 深圳 常德 佛山

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Bootstrap+PHP實(shí)現(xiàn)多圖上傳功能實(shí)例詳解》,本文關(guān)鍵詞  Bootstrap+PHP,實(shí)現(xiàn),多圖,上傳,;如發(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)文章
  • 下面列出與本文章《Bootstrap+PHP實(shí)現(xiàn)多圖上傳功能實(shí)例詳解》相關(guān)的同類信息!
  • 本頁收集關(guān)于Bootstrap+PHP實(shí)現(xiàn)多圖上傳功能實(shí)例詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章