Core.php 838 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace Heanup\Config\MySQL;
  3. use Heanup\Frame\Config;
  4. /**
  5. * 默认数据库配置,不同的库使用不同的配置文件
  6. */
  7. class Core extends Config
  8. {
  9. protected static $data = array(
  10. "master" => [
  11. "host" => "myhome.97admin.com",
  12. "port" => "3306",
  13. "username" => "chendeben",
  14. "password" => "6485882",
  15. "dbname" => "receive_sms",
  16. "charset" => "utf8",
  17. "timeout" => 3
  18. ],
  19. "slave_list" => [
  20. [
  21. "host" => "myhome.97admin.com",
  22. "port" => "3306",
  23. "username" => "chendeben",
  24. "password" => "6485882",
  25. "dbname" => "receive_sms",
  26. "charset" => "utf8",
  27. "timeout" => 3
  28. ]
  29. ]
  30. );
  31. }