You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
396 B

  1. <?php
  2. /**
  3. * 以下配置为系统级的配置,通常放置不同环境下的不同配置
  4. */
  5. return array(
  6. /**
  7. * 默认环境配置
  8. */
  9. 'debug' => true,
  10. /**
  11. * MC缓存服务器参考配置
  12. */
  13. 'mc' => array(
  14. 'host' => '127.0.0.1',
  15. 'port' => 11211,
  16. ),
  17. /**
  18. * 加密
  19. */
  20. 'crypt' => array(
  21. 'mcrypt_iv' => '12345678', //8位
  22. ),
  23. );