欢迎来到代码驿站!

PHP代码

当前位置:首页 > 软件编程 > PHP代码

TP5 基于bootstrap实现多图上传插件

时间:2021-10-17 09:12:24|栏目:PHP代码|点击:

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="inputEmail3" class="col-sm-2 control-label">多图上传</label>
<div class="col-sm-10">
<input id="file-0" type="file" multiple class="file" name="path[]" >
</div>
</div>

3-控制器

public function add() {
//多图上传
$arryFile = $request->file("path");
foreach ($arryFile as $File){
  $pathImg="";
 //移动文件到框架应用更目录的public/uploads/
  $info = $File->move(ROOT_PATH . 'public' . DS . 'upload' . DS . 'top_bar' . DS . date('Y') . DS . date('m-d'),md5(microtime(true)));
  if ($info) {
   $pathImg = "/public/upload/top_bar/" . date('Y') . '/' . date('m-d') . '/' . $info->getFilename();
  } else {
   //错误提示用户
   return $this->error($File->getError());
  }
  $result["path"] = $pathImg;
  $result["top_bar_id"]=$dataId;
  Db::name('top_path')->insert($result);
 }

总结

上一篇:php+ajax实现无刷新分页的方法

栏    目:PHP代码

下一篇:php中随机函数mt_rand()与rand()性能对比分析

本文标题:TP5 基于bootstrap实现多图上传插件

本文地址:http://www.codeinn.net/misctech/180284.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有