1234567891011121314151617181920212223 |
- <?php
- namespace refill\kangkai;
- use mtopcard;
- class config
- {
- //885
- const ORDER_URL = 'http://8.142.133.14:8080/telapi.aspx?v=H1.1&action=charge';
- const QUERY_URL = 'http://8.142.133.14:8080/telapi.aspx?v=H1.1&action=queryReport';
- const GET_PACKAGE_URL = 'http://8.142.133.14:8080/telapi.aspx?v=H1.1&action=getPackage';
- const BALANCE_URL = 'http://8.142.133.14:8080/telapi.aspx?v=H1.1&action=getBalance';
- const Account = '18500608333';
- const ApiKey = '0fa1c183841942659d77747987230da3';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_kangkai.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- }
|