PHP中TP5 上传文件的实例详解

前端之家收集整理的这篇文章主要介绍了PHP中TP5 上传文件的实例详解前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

PHP 文件上传

效果图:

实现代码

application\index\controller\Index.PHP

PHP;"> fetch(); } //文件上传提交 public function upload() { //获取表单上传文件 $file = request()->file('files'); if (emptyempty($file)) { $this->error('请选择上传文件'); } //移动到框架应用根目录/public/uploads/ 目录下 $info = $file->move(ROOT_PATH . 'public' . DS . 'uploads'); if ($info) { $this->success('文件上传成功'); echo $info->getFilename(); } else { //上传失败获取错误信息 $this->error($file->getError()); } } }

application\index\view\index\index.html

PHP;"> <Meta charset="UTF-8"> <a href="https://www.jb51.cc/tag/wenjian/" target="_blank" class="keywords">文件</a><a href="https://www.jb51.cc/tag/shangchuan/" target="_blank" class="keywords">上传</a>

文件上传

文件:

以上就是PHP上传文件的实例,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持

原文链接:https://www.f2er.com/php/17062.html

猜你在找的PHP相关文章