12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace loyalsoft;
- /**
- * Description of config
- * 尝试用这种写法来定义服务器配置
- * @author gwang email:mail@wanggangzero.cn
- * @copyright © 2015-2-3, SJZ LoyalSoft Corporation & gwang. All rights reserved.
- */
- class config_ios extends config
- {
- function _InitTester()
- {
- $this->testerArr = array();
- }
- function _InitBaneder()
- {
- $this->banedArr = array();
- }
- /**
- * 外网paydb
- */
- protected function _InitOuterNetPaydb()
- {
- $this->paydb->host = '127.0.0.1';
- $this->paydb->port = '3306';
- $this->paydb->name = 'ylsj2019_pay';
- $this->paydb->user = 'root';
- $this->paydb->password = 'wanggang1985';
- }
- /**
- * 外网nosql
- */
- protected function _InitOuterNetNosql()
- {
- $this->nosql->host = "127.0.0.1"; # host/ip
- $this->nosql->port = 6379; # 端口
- $this->nosql->pwd = 'wanggang1985'; # 密钥
- }
- }
- return new config_ios();
|