12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- setlocale(LC_ALL, 'zh_CN.UTF-8');
- defined('TIMESTAMP') or define('TIMESTAMP',time());
- defined('SYS_START_TIME') or define('SYS_START_TIME',microtime());
- define('IN_KIIVO', true);
- defined('BASE_PATH') or define('BASE_PATH', dirname(__FILE__).DIRECTORY_SEPARATOR);
- $config = require __DIR__ . '/config/config.php';
- require __DIR__ . '/vendor/autoload.php';
- require __DIR__ . '/vendor/yiisoft/yii2/Yii.php';
- include_once __DIR__ . '/common/functions/global.php';
- include_once __DIR__ . '/common/functions/dir.php';
- include_once __DIR__ . '/common/functions/cus.php';
- $domain = require_config('domain.php');
- define('COOKIE_DOMAIN', $domain['cookie_domain']);
- define('WAP_URL', $domain['wap_url']);
- define('WEB_URL', $domain['web_url']);
- define('API_URL', $domain['api_url']);
- define('UPLOAD_DOMAIN', $domain['upload_domain']);
- $config = array_merge_recursive(require_config('console.php'), $config);
- $params = $config['params'];
- defined('CHARSET') or define('CHARSET',$config['params']['charSet']);
- defined('AUTH_KEY') or define('AUTH_KEY',$config['params']['authKey']);
- define('SITE_PROTOCOL', strpos(WEB_URL,'https') !==false ? 'https://' : 'http://');
- define('SITE_URL', (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : ''));
- defined('TIME_ZONE') or define('TIME_ZONE',$config['params']['timeZone']);
- defined('UPLOAD_PATH') or define('UPLOAD_PATH',$config['params']['uploadPath']);
- defined('THUMB_PATH') or define('THUMB_PATH',$config['params']['thumbPath']);
- defined('UPLOAD_URL') or define('UPLOAD_URL',$config['params']['uploadUrl']);
- defined('HTML_PATH') or define('HTML_PATH',$config['params']['htmlPath']);
- defined('CACHE_PATH') or define('CACHE_PATH',$config['params']['cachePath']);
- defined('IN_WAP') or define('IN_WAP',FALSE);
- $application = new yii\console\Application($config);
- $exitCode = $application->run();
- exit($exitCode);
|