PHP中TP5上传⽂件的实例详解
php ⽂件上传
效果图:
实现代码:
application\index\controller\Index.php
<?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上传⽂件的实例,如有疑问请留⾔或者到本站社区交流讨论,感谢阅读,希望能帮助到⼤家,谢谢⼤家对本站的⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论