欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

TP5(thinkPHP5框架)基于bootstrap实现的单图上传插件用法示例

程序员文章站 2022-06-23 21:41:36
本文实例讲述了tp5(thinkphp5框架)基于bootstrap实现的单图上传插件用法。分享给大家供大家参考,具体如下: 1-引入js文件和css文件 &l...

本文实例讲述了tp5(thinkphp5框架)基于bootstrap实现的单图上传插件用法。分享给大家供大家参考,具体如下:

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 = "";
//移动文件到框架应用更目录的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

更多关于thinkphp相关内容感兴趣的读者可查看本站专题:《thinkphp入门教程》、《thinkphp模板操作技巧总结》、《thinkphp常用方法总结》、《codeigniter入门教程》、《ci(codeigniter)框架进阶教程》、《zend framework框架入门教程》及《php模板技术总结》。

希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。