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

开发技术 作者: 2024-08-18 00:20:01
这篇文章主要介绍了PHP中TP5 上传文件的实例详解的相关资料,这里实现PHP 的上传文件的实例,需要的朋友可以参考下

PHP 文件上传

效果图:

实现代码:

application\index\controller\Index.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

文件上传
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_64070.html