tp5文件上传展示
Posted yingyong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tp5文件上传展示相关的知识,希望对你有一定的参考价值。
//接收文件 $file = request()->file(‘image‘); //将文件移动到框架应用根目录/public/uploads/ 目录下 $info = $file->move(ROOT_PATH . ‘public‘ . DS . ‘uploads‘); //更改文件名称入库 $data[‘image‘]=$info->getSaveName(); $res=Db::table("image")->insert($data); if($res){ return $this->success("上传成功","show"); }else{ return $this->error("上传失败","file"); }
<table border="1"> <tr> <td>图片</td> </tr> {volist name="data" id="vo"} <tr> <td><img src="/uploads/{$vo.image}" width="100px" height="100px"></td> </tr> {/volist} </table>
以上是关于tp5文件上传展示的主要内容,如果未能解决你的问题,请参考以下文章
TP5报如下的错误 Indirect modification of overloaded element of thinkpaginatorCollection has no effect(代码片段