12345678910111213141516171819202122 |
- <?php
- namespace refill\youhenew;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://121.40.97.211:8080/telapi.aspx?v=H1.1&action=charge';
- const QUERY_URL = 'http://121.40.97.211:8080/telapi.aspx?v=H1.1&action=queryReport';
- const GET_PACKAGE_URL = 'http://121.40.97.211:8080/telapi.aspx?v=H1.1&action=getPackage';
- const BALANCE_URL = 'http://121.40.97.211:8080/telapi.aspx?v=H1.1&action=getBalance';
- const Account = 'yezi';
- const ApiKey = '9e507ce3002a4461b611a0d86754ffcf';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_youhenew.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- }
|