23 lines
737 B
PHP
23 lines
737 B
PHP
<?PHP
|
|
@session_start();
|
|
#--------------------------------------------------------------
|
|
# 文字 gb2312、utf-8
|
|
#--------------------------------------------------------------
|
|
define('WEBPATH_DIR', str_replace('include','',dirname(__FILE__))); //整站系统路径
|
|
|
|
include_once(WEBPATH_DIR."include/config.inc.game.php");
|
|
|
|
|
|
$GLOBALS["conn"] = new DB_ZDE();//定义公共的数据库连接
|
|
$GLOBALS['myredis'] = new myredis();////连接redis
|
|
|
|
include_once(WEBPATH_DIR."data/flower.data.config.php");//花卉数据信息
|
|
|
|
//页面开始运行时间
|
|
if( !isset($GLOBALS['SYS_START_TIME']) ){$GLOBALS['SYS_START_TIME'] = @microtime_float();}
|
|
|
|
// 注册页面完成时处理函数
|
|
register_shutdown_function('sys_log_shutdown_handler');
|
|
|
|
?>
|