2023-12-03 09:58:50 +08:00

15 lines
337 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
return [
// 启用插件
'enable' => true,
// 允许上传的文件后缀
'exts' => [],
// 分片文件大小限制
'sliceSize' => 0,
// 保存根路径
'rootPath' => public_path() . DIRECTORY_SEPARATOR . 'upload',
// 临时文件存储路径基于rootPath
'tmpPath' => 'tmp'
];