服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - PHP教程 - PHP中TP5 上传文件的实例详解

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

2021-06-09 16:44onestopweb PHP教程

这篇文章主要介绍了PHP中TP5 上传文件的实例详解的相关资料,这里实现PHP 的上传文件的实例,需要的朋友可以参考下

php 文件上传

效果图:

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

实现代码:

application\index\controller\index.php

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!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上传文件的实例,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://onestopweb.iteye.com/blog/2386348

延伸 · 阅读

精彩推荐