bootstrap.php
669 Bytes
<?php
date_default_timezone_set('Asia/Shanghai');
set_include_path('.' . PATH_SEPARATOR . '/Data/code/shop.yoho/websites/www/library' . PATH_SEPARATOR . get_include_path());
require_once 'Q/__config.php';
require_once 'Zend/Loader/Autoloader.php';
Zend_Loader_Autoloader::getInstance()->setFallbackAutoloader(true);
$env = 'test';
define('RELEASE_ENV', $env);
switch ($env)
{
case 'local' :
define('Q_CONFIG_PATH', '/Data/code/shop.yoho/websites/config/core');
break;
case 'release' :
define('Q_CONFIG_PATH', '/Data/code/shop.yoho/websites/config/core');
break;
case 'test' :
define('Q_CONFIG_PATH', '/Data/code/shop.yoho/websites/config/core');
break;
}