12345678910111213141516171819202122232425262728293031323334 |
- <?php
- define('IS_INITPHP','http://api.hongzeit.com');
- error_reporting(0);
- header("Content-type: text/json; charset=utf-8");
- date_default_timezone_set('Asia/Shanghai');
- include './SinglePHP.class.php';
- include './config.php';
- SinglePHP::getInstance($config)->run();
- ?>
|