base.php 229 B

1234567891011121314
  1. <?php
  2. # 一些基本配置
  3. $config['base'] = array
  4. (
  5. # 积分配置
  6. 'score' => array
  7. (
  8. # 实时增加积分开启,关闭则需要把lib/core.cron放到计划任务中
  9. 'sync' => true,
  10. ),
  11. );
  12. return $config;