- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
57 lines
1.5 KiB
PHP
57 lines
1.5 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
return [
|
|
//默认上传模式
|
|
'default' => 'local',
|
|
//上传文件大小
|
|
'filesize' => 52428800,
|
|
//上传文件后缀类型
|
|
'fileExt' =>
|
|
['jpg', 'jpeg', 'png', 'gif', 'ico', 'pem', 'mp3', 'wma', 'wav', 'amr', 'mp4', 'key', 'xlsx', 'xls', 'video/mp4','mov'],
|
|
//上传文件类型
|
|
'fileMime' => [
|
|
'video/mp4',
|
|
'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',
|
|
'video/quicktime',
|
|
'image/x-icon',
|
|
'image/vnd.microsoft.icon',
|
|
],
|
|
//驱动模式
|
|
'stores' => [
|
|
//本地上传配置
|
|
'local' => [],
|
|
//七牛云上传配置
|
|
'qiniu' => [],
|
|
//oss上传配置
|
|
'oss' => [],
|
|
//cos上传配置
|
|
'cos' => [],
|
|
//oss 京东云
|
|
'jdoss' => [
|
|
],
|
|
//oss 华为云
|
|
'obs' => [
|
|
],
|
|
//oss 天翼云
|
|
'tyoss' => [
|
|
],
|
|
]
|
|
];
|