From 1a8aea45ebb1582c9f65d9e8dcd520002f83ae12 Mon Sep 17 00:00:00 2001 From: chengkun <chengkun@ishangstudy.com> Date: Thu, 22 May 2025 11:06:33 +0800 Subject: [PATCH] 提交 --- global.php | 69 ++++++++++++++++------------------ 1 files changed, 33 insertions(+), 36 deletions(-) diff --git a/global.php b/global.php index 1f29615..3ffb949 100644 --- a/global.php +++ b/global.php @@ -1,24 +1,24 @@ <?php error_reporting(0); -define('APP_PATH',dirname(__FILE__).'/'); -define('CONFIG_PATH',APP_PATH.'config/'); -define('DATA_PATH',APP_PATH.'data/'); -define('LIB_PATH',APP_PATH.'app/include/'); -define('TPL_PATH',APP_PATH.'app/template/'); -define('MODEL_PATH',APP_PATH.'model/'); -define('PLUS_PATH',DATA_PATH.'plus/'); -define('ALL_PS','conn'); +define('APP_PATH', dirname(__FILE__) . '/'); +const CONFIG_PATH = APP_PATH . 'config/'; +const DATA_PATH = APP_PATH . 'data/'; +const LIB_PATH = APP_PATH . 'app/include/'; +const TPL_PATH = APP_PATH . 'app/template/'; +const MODEL_PATH = APP_PATH . 'model/'; +const PLUS_PATH = DATA_PATH . 'plus/'; +const ALL_PS = 'conn'; -ini_set('session.gc_maxlifetime',9000); -ini_set('session.gc_probability',10); -ini_set('session.gc_divisor',100); +ini_set('session.gc_maxlifetime', 9000); +ini_set('session.gc_probability', 10); +ini_set('session.gc_divisor', 100); -include(CONFIG_PATH.'db.config.php'); -include_once(PLUS_PATH.'config.php'); -include(CONFIG_PATH.'db.safety.php'); +include(CONFIG_PATH . 'db.config.php');//$db_config +include_once(PLUS_PATH . 'config.php'); +include(CONFIG_PATH . 'db.safety.php'); -$starttime=time(); +$starttime = time(); define('DEF_DATA', $db_config['def']); unset ($_ENV, $HTTP_ENV_VARS, $_REQUEST, $HTTP_POST_VARS, $HTTP_GET_VARS); $_COOKIE = (is_array($_COOKIE)) ? $_COOKIE : $HTTP_COOKIE_VARS; @@ -30,36 +30,33 @@ date_default_timezone_set($db_config['timezone']); if (substr(PHP_VERSION, 0, 1) == '7') { - include_once(LIB_PATH."mysqli.class.php"); + include_once(LIB_PATH . "mysqli.class.php"); -}else{ +} else { - include_once(LIB_PATH."mysql.class.php"); + include_once(LIB_PATH . "mysql.class.php"); } -include_once(LIB_PATH.'libs/Smarty.class.php'); +include_once(LIB_PATH . 'libs/Smarty.class.php'); $phpyun = new Smarty; -$phpyun->debugging = false; -$phpyun->caching = false; -$phpyun->force_cache = false; -$phpyun->template_dir = TPL_PATH; -$phpyun->compile_dir = DATA_PATH.'/templates_c/'; -$phpyun->cache_dir = DATA_PATH.'/cache/'; +$phpyun->debugging = FALSE; +$phpyun->caching = FALSE; +$phpyun->force_cache = FALSE; +$phpyun->template_dir = TPL_PATH; +$phpyun->compile_dir = DATA_PATH . '/templates_c/'; +$phpyun->cache_dir = DATA_PATH . '/cache/'; $phpyun->left_delimiter = '{yun:}'; -$phpyun->right_delimiter= '{/yun}'; +$phpyun->right_delimiter = '{/yun}'; $phpyun->get_install(); -if(is_file(LIB_PATH.'webscan360/360safe/360webscan.php')){ - require_once(LIB_PATH.'webscan360/360safe/360webscan.php'); +if (is_file(LIB_PATH . 'webscan360/360safe/360webscan.php')) { + require_once(LIB_PATH . 'webscan360/360safe/360webscan.php'); } -$db = new mysql($db_config['dbhost'], $db_config['dbuser'], $db_config['dbpass'], $db_config['dbname'], ALL_PS, $db_config['charset'],$db_config['def']); +$db = new mysql($db_config['dbhost'], $db_config['dbuser'], $db_config['dbpass'], $db_config['dbname'], ALL_PS, $db_config['charset'], $db_config['def']); -include_once(LIB_PATH.'public.function.php'); -include_once(LIB_PATH.'public.domain.php'); -include(LIB_PATH.'public.url.php'); - -include(PLUS_PATH.'seo.cache.php'); - -?> \ No newline at end of file +include_once(LIB_PATH . 'public.function.php'); +include_once(LIB_PATH . 'public.domain.php'); +include(LIB_PATH . 'public.url.php'); +include(PLUS_PATH . 'seo.cache.php'); \ No newline at end of file -- Gitblit v1.9.0