| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace Heanup\Config\MySQL;
- use Heanup\Frame\Config;
- /**
- * 默认数据库配置,不同的库使用不同的配置文件
- */
- class Core extends Config
- {
- protected static $data = array(
- "master" => [
- "host" => "myhome.97admin.com",
- "port" => "3306",
- "username" => "chendeben",
- "password" => "6485882",
- "dbname" => "receive_sms",
- "charset" => "utf8",
- "timeout" => 3
- ],
- "slave_list" => [
- [
- "host" => "myhome.97admin.com",
- "port" => "3306",
- "username" => "chendeben",
- "password" => "6485882",
- "dbname" => "receive_sms",
- "charset" => "utf8",
- "timeout" => 3
- ]
- ]
- );
- }
|