> TP 内置的文件上传(文件上传到服务器)
#### 1\. 使用方法
* * *
**简单示例**
~~~
// 返回数组
Upload::putFile('磁盘', '文件字段域', '目录名');
~~~
~~~
Upload::putFile('public', 'img');
Upload::putFile('public', 'img', 'thumb');
~~~
**`上传成功`和`上传失败`时的返回值**
![](https://img.itqaq.com/art/content/a86cef6ea50b6700cb9a72f4a81096c3.png)
![](https://img.itqaq.com/art/content/fdc07240008ef14ab5c3b4bd544331aa.png)
#### 2\. 文件上传封装类
* * *
~~~
<?php
// 本文件放在TP6.0.*的extend目录下
// extend/Upload.php
use think\facade\Config;
use think\facade\Filesystem;
use think\exception\ValidateException;
/**
* 文件上传封装
* @author liang
* @datetime 2020-07-01
*/
class Upload
{
/**
* 执行文件上传
* @param string $disks 磁盘名称
* @param string $field 字段名
* @param string $dir 文件存放目录名,默认和字段名相同
* @return array 文件上传结果数组
*/
public static function putFile(string $disks = '', string $field = '', string $dir = '')
{
// 此时也可能报错
// 比如上传的文件过大,超出了配置文件中限制的大小
try {
$file = request()->file($field);
} catch (\think\Exception $e) {
return self::_rtnData(false, self::_languageChange($e->getMessage()));
}
// 确定使用的磁盘
$disks = $disks ?: Filesystem::getDefaultDriver();
// 文件存放目录名称
$dirname = $dir ?: $field;
// 从存放目录开始的存放路径
$savename = Filesystem::disk($disks)->putFile($dirname, $file);
// 完整路径
$path = Filesystem::getDiskConfig($disks, 'url') . '/' . str_replace('\\', '/', $savename);
// 返回上传成功时的数组
return self::_rtnData(true, '上传成功', $path);
}
/**
* 英文转为中文
*/
private static function _languageChange($msg)
{
$data = [
// 上传错误信息
'unknown upload error' => '未知上传错误!',
'file write error' => '文件写入失败!',
'upload temp dir not found' => '找不到临时文件夹!',
'no file to uploaded' => '没有文件被上传!',
'only the portion of file is uploaded' => '文件只有部分被上传!',
'upload File size exceeds the maximum value' => '上传文件大小超过了最大值!',
'upload write error' => '文件上传保存错误!',
];
return $data[$msg] ?? $msg;
}
/**
* 文件上传返回结果数组
*/
private static function _rtnData(bool $result, $msg = null, $path = null)
{
// 过滤掉值为null的数组元素
return array_filter(compact('result', 'msg', 'path'), function($v){
return !is_null($v);
});
}
}
~~~
- 搭建ThinkPHP6的开发环境
- 配置ThinkPHP6
- 必要的基础知识(basic)
- MVC开发模式
- 控制器(controller)
- 数据库(database)
- 模型(model)
- 模型关联(relation)
- 视图(view)
- Session
- Cookie
- 缓存(cache)
- 上传(upload)
- 验证器(validate)
- 验证码(captcha)
- 命令行(command)
- 服务器部署(deploy)
- 数据备份(backup)
- 数据同步(synchronization)
- 订阅服务(subscribe)
- PHP 易混淆知识点
- 助手函数
- MySQL规范
- Redis 规范
- office插件 phpoffice
- 拼音插件 pinyin
- 日期插件 datetime
- 消息插件 amqp
- 产品部署环境的搭建
- PDF 等杂项处理
- 文件上传
- 常用扩展
- flc/dysms
- 使用示例 ①
- 使用示例 ②
- qiniu/php-sdk
- 简介
- 使用示例
- 使用示例 2 ②
- liliuwei/thinkphp-jump
- 扩展介绍
- 下载扩展
- 使用方法
- topthink/think-captcha
- 安装扩展
- 验证码显示
- 更换验证码
- 验证码校验
- 验证码配置
- 自定义验证码
- phpoffice/phpspreadsheet
- 数据写入表格
- 读取表格数据
- topthink/think-queue
- 安装
- 自定义函数
- 任务类
- 带有日志的任务类