TP5 基于bootstrap实现多图上传插件
程序员文章站
2022-11-21 10:58:51
1----引入js文件和css文件
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); }
总结
以上所述是小编给大家介绍的tp5 基于bootstrap实现多图上传插件,希望对大家有所帮助
上一篇: Sybase数据库sa密码丢失后解决方法
推荐阅读
-
TP5 基于bootstrap实现多图上传插件
-
TP5(thinkPHP5框架)基于bootstrap实现的单图上传插件用法示例
-
基于bootstrap的上传插件fileinput实现ajax异步上传功能(支持多文件上传预览拖拽)
-
TP5 基于bootstrap实现多图上传插件
-
基于bootstrap的上传插件fileinput实现ajax异步上传功能(支持多文件上传预览拖拽)
-
TP5(thinkPHP5框架)基于bootstrap实现的单图上传插件用法示例
-
基于bootstrap的上传插件fileinput实现ajax异步上传功能(支持多文件上传预览拖拽)
-
基于bootstrap的上传插件fileinput实现ajax异步上传功能(支持多文件上传预览拖拽)