upload.php
929 字节
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* 上传配置
* 如果其他配置没有设置某一项则使用default的
* 默认配置见下
* @see \App\Services\UploadService::$config
*/
return [
// 产品图集
'product' => [
'size' => [
'max' => 1024*1024*2, // 2M
],
'path' => '/product'
],
//默认
'default_image' =>[
'size' => [
'max' => 1024*1024*2, // 2M
],
'path' => '/images'
],
//默认视频
'default_file' =>[
'size' => [
'max' => 1024*1024*20, // 2M
],
'path' => '/files'
],
//博客图
'blog' =>[
'size' => [
'max' => 1024*1024*2, // 2M
],
'path' => '/blog'
],
//新闻图
'news' =>[
'size' => [
'max' => 1024*1024*2, // 2M
],
'path' => '/news'
],
];