123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * 小七手游 配置参数
- * @author gwang
- */
- class config_x7sy {
- //put your code here
- /**
- * @var 应用包名
- */
- public $AppPackage = "com.loyalsoft.ylsj.x7sy";
- /**
- * @var string 应用秘钥
- */
- public $AppKey = "ad547bd28b1e8ff4ed23a13329515788";
- /**
- * @var string 当前PayID参数
- */
- public $PayID = "14328";
- /**
- * @var string RSA公钥
- */
- public $RSA_pub = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDG6shmbeWk3Vt5pM4uXUncVsgqpmU8nypWDnh57EiJJVAVRnbqdONh9+wCaNSWbE9LdYog9gJHF+HQpA6911ZLUVWw/y2A0UmohXyHHiWaZbpgCCfOKnDmpkWAA7ZrBi+SIIVXNEeuXYjxfaGHK6v9CwUjKe9dY5iOZp/S1s7mBQIDAQAB";
- public $LoginApiURL = "https://api.x7sy.com/user/check_login";
- const isTest = true;
- /**
- *
- * @return \config_x7sy
- */
- static public function Inst() {
- $cfg = new config_x7sy();
- if (self::isTest) {
- $cfg->LoginApiURL = "https://api.x7sy.com/user/test_check_login";
- }
- return $cfg;
- }
- }
|