| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- // +----------------------------------------------------------------------
- // | 上传配置
- // +----------------------------------------------------------------------
- return [
- //默认上传模式
- 'default' => 'local',
- //上传文件大小
- 'filesize' => 52428800,
- //上传文件后缀类型
- 'fileExt' => [
- 'jpg',
- 'jpeg',
- 'png',
- 'gif',
- 'webp',
- 'pem',
- 'mp3',
- 'wma',
- 'wav',
- 'amr',
- 'mp4',
- 'key',
- 'xlsx',
- 'xls',
- 'ico',
- 'avif',
- 'txt'
- ],
- //上传文件类型
- 'fileMime' => [
- 'image/jpg',
- 'image/jpeg',
- 'image/gif',
- 'image/png',
- 'text/plain',
- 'audio/mpeg',
- 'video/mp4',
- 'application/octet-stream',
- 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
- 'application/vnd.ms-works',
- 'application/vnd.ms-excel',
- 'application/zip',
- 'application/vnd.ms-excel',
- 'application/vnd.ms-excel',
- 'text/xml',
- 'image/x-icon',
- 'image/vnd.microsoft.icon',
- 'application/x-x509-ca-cert',
- ],
- //驱动模式
- 'stores' => [
- //本地上传配置
- 'local' => [],
- //七牛云上传配置
- 'qiniu' => [],
- //oss上传配置
- 'oss' => [],
- //cos上传配置
- 'cos' => [],
- //obs华为储存
- 'obs' => [],
- //ucloud存储
- 'us3' => [],
- //jd
- 'jdoss' => [],
- //天翼云
- 'ctoss' => [],
- ],
- 'iamge_fileExt' => ['jpg', 'jpeg', 'png', 'gif','webp','avif'],
- //上传文件类型
- 'image_fileMime' => ['image/jpeg', 'image/gif', 'image/png','image/webp', 'image/avif'],
- ];
|