upload.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. return [
  12. //默认上传模式
  13. 'default' => 'local',
  14. //上传文件大小
  15. 'filesize' => 209715200,
  16. //上传文件后缀类型
  17. 'fileExt' => ['jpg', 'jpeg', 'png', 'gif', 'pem', 'mp3', 'wma', 'wav', 'amr', 'mp4', 'key', 'xlsx', 'xls', 'video/mp4', 'apk'],
  18. //上传文件类型
  19. 'fileMime' => [
  20. 'image/jpeg',
  21. 'image/gif',
  22. 'image/png',
  23. 'text/plain',
  24. 'audio/mpeg',
  25. 'application/octet-stream',
  26. 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
  27. 'application/vnd.ms-works',
  28. 'application/vnd.ms-excel',
  29. 'application/zip',
  30. 'application/vnd.ms-excel',
  31. 'application/vnd.ms-excel',
  32. 'text/xml',
  33. ],
  34. //驱动模式
  35. 'stores' => [
  36. //本地上传配置
  37. 'local' => [],
  38. //七牛云上传配置
  39. 'qiniu' => [
  40. ],
  41. //oss 阿里云上传配置
  42. 'oss' => [
  43. ],
  44. //cos 腾讯云上传配置
  45. 'cos' => [
  46. ],
  47. //oss 京东云
  48. 'jdoss' => [
  49. ],
  50. //oss 华为云
  51. 'obs' => [
  52. ],
  53. //oss 天翼云
  54. 'tyoss' => [
  55. ],
  56. ]
  57. ];