本文实例讲述了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代码
2021春节祝福动态图片下载<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(); } } el { //错误提示用户 r再次微笑歌曲eturn $this->error($file->geterror()); }//赋值$data["thumb_url"] = $imgpath;$dataid = db::name('top_bar')->inrtgetid($data);}
更多的功能和插件 参考地址:https://www.kancloud.cn/he_he/thinkphp5/787173
更多关于thinkphp相关内容感兴趣的读者可查看本站专题:《thinkphp入门教程》、《thinkphp模板操作技巧总结》、《thinkphp常用方法总结》、《codeigniter入门教程》、《ci(codeigniter)框架进阶教程》、《zend framework框架入门教程》及《php模板技术总结》。
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
本文发布于:2023-04-07 08:19:14,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/c9811fe1b2dd834cd2b0231ab589e979.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:TP5(thinkPHP5框架)基于bootstrap实现的单图上传插件用法示例.doc
本文 PDF 下载地址:TP5(thinkPHP5框架)基于bootstrap实现的单图上传插件用法示例.pdf
留言与评论(共有 0 条评论) |