files.php 245 B

12345678910111213
  1. <?php
  2. /**
  3. * 文件上传配置
  4. */
  5. return [
  6. // 支持的文件类型
  7. 'fileTypes'=> ['txt','doc','docx','xls','xlsx','ppt','pptx','pdf'],
  8. // 文件上传大小
  9. 'fileSize'=> 30,
  10. // 图片上传大小
  11. 'imageSize'=> 10,
  12. ];