index-test.php
653 Bytes
<?php
use Yaf\Application;
define('SITE_MAIN', 'http://huodong.yohobuy.com'); // 网站主域名
define('OLD_MAIN', 'http://huodong.yohobuy.com'); // 网站旧域名
define('COOKIE_DOMAIN', '.yohobuy.com'); // COOKIE作用域
define('SUB_DOMAIN', '.yohobuy.com'); // 子域名后缀
define('USE_CACHE', true); // 缓存的开关
define('APPLICATION_PATH', dirname(__DIR__)); // 应用目录
define('ROOT_PATH', dirname(dirname(APPLICATION_PATH))); // 根目录
defined('APPLICATION_ENV') || define('APPLICATION_ENV', 'testing');
$application = new Application(APPLICATION_PATH . '/configs/application.testing.ini');
$application->bootstrap()->run();