您的位置:首页 > 编程语言 > PHP开发

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

2017-07-31 10:09 3075 查看

php 文件上传

效果图:

实现代码:

application\index\controller\Index.php

<?php
namespace app\index\controller;
use think\Controller;
use think\Request;
class Index extends Controller
{
//文件上传表单
public function index()
{
return $this->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

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>文件上传</title>
</head>
<body>
<h2>文件上传</h2>
<FORM method="post" enctype="multipart/form-data" class="form" action="{:url('upload')}">选择文件:
<INPUT type="file" class="files" name="files"><br/>
<INPUT type="submit" class="btn" value=" 提交 ">
</FORM>
</body>
</html>

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

您可能感兴趣的文章:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  php 文件上传