File: /www/wwwroot/crm.magiceyelens.com/YZNCMS-master/addons/database/config.php
<?php
return [
0 => [
'name' => 'path',
'title' => '数据库备份路径',
'type' => 'text',
'value' => '/data/',
'style' => "width:200px;",
'tips' => '路径必须以 / 结尾',
],
1 => [
'name' => 'part',
'title' => '数据库备份卷大小',
'type' => 'text',
'value' => '20971520',
'style' => "width:200px;",
'tips' => '该值用于限制压缩后的分卷最大长度。单位:B;建议设置20M',
],
2 => [
'name' => 'compress',
'title' => '是否启用压缩',
'type' => 'select',
'options' => [
'1' => '启用压缩',
'0' => '不启用',
],
'value' => '1',
'tips' => '压缩备份文件需要PHP环境支持gzopen,gzwrite函数',
],
3 => [
'name' => 'level',
'title' => '压缩级别',
'type' => 'select',
'options' => [
'1' => '普通',
'4' => '一般',
'9' => '最高',
],
'value' => '9',
'tips' => '数据库备份文件的压缩级别,该配置在开启压缩时生效',
],
];