欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Uchome1.2 1.5 代码学习 common.php

程序员文章站 2022-06-19 19:09:22
uchome的代码还是很不错的,学习一下! 复制代码 代码如下:
uchome的代码还是很不错的,学习一下!
复制代码 代码如下:

<?php
/**
* 定义一些常量
*/
@define('in_uchome', true); //据说可以防止文件非法包含
define('x_ver', '1.2'); //uchome版本
define('x_release', '20080612');//发布日期
define('d_bug', '0'); //是否开启调试功能, 0:关闭, 1:开启
//根据是否开启调试功能设置错误报告级别
d_bug?error_reporting(7):error_reporting(0);
//初始化一些全局变量
$_sglobal = $_sconfig = $_sblock = $_tpl = $_scookie = $space = array();
//定义程序目录常量
define('s_root', dirname(__file__).directory_separator);
//获取时间,主要用于输出程序运行时间
$mtime = explode(' ', microtime());
$_sglobal['timestamp'] = $mtime[1];
$_sglobal['supe_starttime'] = $_sglobal['timestamp'] + $mtime[0];
//基本文件,尝试包含基本配置文件,如果包含不成功,则安装程序
if(!@include_once(s_root.'./config.php')) {
header("location: install/index.php");
exit();
}
//包含公用函数库
include_once(s_root.'./source/function_common.php');
//链接数据库
dbconnect();
//配置文件,尝试包含缓存目录中的网站配置信息,如果不成功,则包含进缓存处理函数库并生成配置缓存
if(!@include_once(s_root.'./data/data_config.php')) {
include_once(s_root.'./source/function_cache.php');
config_cache();
}
//强制使用字符集
if($_sconfig['headercharset']) {
@header('content-type: text/html; charset='.$_sc['charset']);
}
//gpc过滤,自动转义$_get,$_post,$_cookie中的特殊字符,防止sql注入攻击
$magic_quote = get_magic_quotes_gpc();
if(emptyempty($magic_quote)) {
$_get = saddslashes($_get);
$_post = saddslashes($_post);
}
//cookie
$prelength = strlen($_sc['cookiepre']);
foreach($_cookie as $key => $val) {
if(substr($key, 0, $prelength) == $_sc['cookiepre']) {
$_scookie[(substr($key, $prelength))] = emptyempty($magic_quote) ? saddslashes($val) : $val;
}
}
//启用gip
if ($_sc['gzipcompress'] && function_exists('ob_gzhandler')) {
ob_start('ob_gzhandler');
} else {
ob_start();
}
//初始化
$_sglobal['supe_uid'] = 0;
$_sglobal['supe_username'] = '';
$_sglobal['inajax'] = emptyempty($_get['inajax'])?0:intval($_get['inajax']);
$_sglobal['ajaxmenuid'] = emptyempty($_get['ajaxmenuid'])?'':$_get['ajaxmenuid'];
$_sglobal['refer'] = emptyempty($_server['http_referer'])?'':$_server['http_referer'];
//获取用户信息
getuser();
//应用列表
@include_once(s_root.'./data/data_app.php');
if(emptyempty($_sglobal['app'])) {
include_once(s_root.'./source/function_cache.php');
app_cache();
}
?>
<?php
/**
* 定义一些常量
*/
@define('in_uchome', true); //据说可以防止文件非法包含
define('x_ver', '1.2'); //uchome版本
define('x_release', '20080612');//发布日期
define('d_bug', '0'); //是否开启调试功能, 0:关闭, 1:开启
//根据是否开启调试功能设置错误报告级别
d_bug?error_reporting(7):error_reporting(0);
//初始化一些全局变量
$_sglobal = $_sconfig = $_sblock = $_tpl = $_scookie = $space = array();
//定义程序目录常量
define('s_root', dirname(__file__).directory_separator);
//获取时间,主要用于输出程序运行时间
$mtime = explode(' ', microtime());
$_sglobal['timestamp'] = $mtime[1];
$_sglobal['supe_starttime'] = $_sglobal['timestamp'] + $mtime[0];
//基本文件,尝试包含基本配置文件,如果包含不成功,则安装程序
if(!@include_once(s_root.'./config.php')) {
header("location: install/index.php");
exit();
}
//包含公用函数库
include_once(s_root.'./source/function_common.php');
//链接数据库
dbconnect();
//配置文件,尝试包含缓存目录中的网站配置信息,如果不成功,则包含进缓存处理函数库并生成配置缓存
if(!@include_once(s_root.'./data/data_config.php')) {
include_once(s_root.'./source/function_cache.php');
config_cache();
}
//强制使用字符集
if($_sconfig['headercharset']) {
@header('content-type: text/html; charset='.$_sc['charset']);
}
//gpc过滤,自动转义$_get,$_post,$_cookie中的特殊字符,防止sql注入攻击
$magic_quote = get_magic_quotes_gpc();
if(emptyempty($magic_quote)) {
$_get = saddslashes($_get);
$_post = saddslashes($_post);
}
//cookie
$prelength = strlen($_sc['cookiepre']);
foreach($_cookie as $key => $val) {
if(substr($key, 0, $prelength) == $_sc['cookiepre']) {
$_scookie[(substr($key, $prelength))] = emptyempty($magic_quote) ? saddslashes($val) : $val;
}
}
//启用gip
if ($_sc['gzipcompress'] && function_exists('ob_gzhandler')) {
ob_start('ob_gzhandler');
} else {
ob_start();
}
//初始化
$_sglobal['supe_uid'] = 0;
$_sglobal['supe_username'] = '';
$_sglobal['inajax'] = emptyempty($_get['inajax'])?0:intval($_get['inajax']);
$_sglobal['ajaxmenuid'] = emptyempty($_get['ajaxmenuid'])?'':$_get['ajaxmenuid'];
$_sglobal['refer'] = emptyempty($_server['http_referer'])?'':$_server['http_referer'];
//获取用户信息
getuser();
//应用列表
@include_once(s_root.'./data/data_app.php');
if(emptyempty($_sglobal['app'])) {
include_once(s_root.'./source/function_cache.php');
app_cache();
}
?>

下面是1.5版本的common.php
复制代码 代码如下:

<?php
/*
[ucenter home] (c) 2007-2008 comsenz inc.
$id: common.php 10981 2009-01-14 03:05:20z liguode $
*/
//定义一个常量,用来在其他页面中,防止被恶意用户直接调用其他php文件。
@define('in_uchome', true);
//定义一个常量,这个常量表示版本号
define('x_ver', '1.5');
//这个也是一个常量,次版本号
define('x_release', '20090114');
/*定义程序的调试模式,在我们调试程序的时候将常量值设为1,这样程序出错的时候会在页面显示错误信息。
在调试完毕正常投入使用后设为0,这样程序出错不会显示给用户。
*/
define('d_bug', '0');
//通过d_bug常量值指定错误报告类型。其中error_reporting()的参数是错误报告类型,相关参数可查询php手册
d_bug?error_reporting(7):error_reporting(0);
//这下面都是定义的全局变量。具体的会在后面使用的时候一一介绍
$_sglobal = $_sconfig = $_sblock = $_tpl = $_scookie = $_sn = $space = array();
//定义程序目录常量。其中directory_separator是路径分隔符,linux上就是'/' windows上是'\'
define('s_root', dirname(__file__).directory_separator);
//加载基本的配置文件,用了@符号,达到找不到该文件时在页面不提示错误信息
if(!@include_once(s_root.'./config.php')) {
//如果找不到的话则重定向到安装文件
header("location: install/index.php");
exit();
}
//通用函数文件,具体函数在介绍时间会一一解释
include_once(s_root.'./source/function_common.php');
//时间microtime()获取含毫秒的时间
$mtime = explode(' ', microtime());
$_sglobal['timestamp'] = $mtime[1];
//$mtime[0]为unix时间戳(整形), $mtime[0]为毫秒
$_sglobal['supe_starttime'] = $_sglobal['timestamp'] + $mtime[0];
//get_magic_quotes_gpc检测php.ini配置中的魔术引号功能是否打开
$magic_quote = get_magic_quotes_gpc();
if(emptyempty($magic_quote)) {
//如果自动过滤每打开,则对传入的参数进行转义
$_get = saddslashes($_get);
$_post = saddslashes($_post);
}
//货主站点的url,其中getsiteurl()是用来获取当前站点的域名
if(emptyempty($_sc['siteurl'])) $_sc['siteurl'] = getsiteurl();
//链接数据库
dbconnect();
//打开缓存文件
foreach (array('config', 'app', 'userapp', 'ad') as $value) {
if(!@include_once(s_root.'./data/data_'.$value.'.php')) {
//如果缓存文件打开失败重建缓存,function_cache.php是包含建立缓存的函数文件
include_once(s_root.'./source/function_cache.php');
$cache_func = $value.'_cache';
//调用相应的函数来生成缓存。
$cache_func();
}
}
//获取cookie前缀的长度,$_sc['cookiepre']是在config.php中定义的cookie函数的前缀名称,$_cookie是存放cookie的数据全局变量数组
$prelength = strlen($_sc['cookiepre']);
foreach($_cookie as $key => $val) {
//判断当前域名下的cookie中属于uchome的cookie
if(substr($key, 0, $prelength) == $_sc['cookiepre']) {
//对cookie值进行转义
$_scookie[(substr($key, $prelength))] = emptyempty($magic_quote) ? saddslashes($val) : $val;
}
}
//是否启用gip压缩传输,这个是用来提高php传输速度的。
if ($_sc['gzipcompress'] && function_exists('ob_gzhandler')) {
ob_start('ob_gzhandler');
} else {
ob_start();
}
//初始化
$_sglobal['supe_uid'] = 0; //初始化当前用户的uid
$_sglobal['supe_username'] = ''; //初始化当前用户的用户名
$_sglobal['inajax'] = emptyempty($_get['inajax'])?0:intval($_get['inajax']); //这个是用来在页面中控制一些弹出框,在模板篇会介绍
$_sglobal['ajaxmenuid'] = emptyempty($_get['ajaxmenuid'])?'':$_get['ajaxmenuid'];
$_sglobal['refer'] = emptyempty($_server['http_referer'])?'':$_server['http_referer']; //获得上一页的url,用来跳转
//登录注册防灌水机
/*
在登录或者注册的时候看到形如:do.php?ac=750e45d29d276b2f86f1445627c08f99的链接
后面的750e45d29d276b2f86f1445627c08f99就是用下面的来获取的。
*/
if(emptyempty($_sconfig['login_action'])) $_sconfig['login_action'] = md5('login'.md5($_sconfig['sitekey']));
if(emptyempty($_sconfig['register_action'])) $_sconfig['register_action'] = md5('register'.md5($_sconfig['sitekey']));
//整站风格,检查站点模板的路径。此处是default目录,就是我们常用黄色风格的模板路径
if(emptyempty($_sconfig['template'])) {
$_sconfig['template'] = 'default';
}
//在首页由下角可以自行选择风格的实现就是通过这段。
if($_scookie['mytemplate']) {
$_scookie['mytemplate'] = str_replace('.','',trim($_scookie['mytemplate']));
if(file_exists(s_root.'./template/'.$_scookie['mytemplate'].'/style.css')) {
$_sconfig['template'] = $_scookie['mytemplate'];
} else {
ssetcookie('mytemplate', '');
}
}
//处理request_uri,查询(query)的字符串(url 中第一个问号 ? 之后的内容)。 如为空则为当前页面。
if(!isset($_server['request_uri'])) {
$_server['request_uri'] = $_server['php_self'];
if(isset($_server['query_string'])) $_server['request_uri'] .= '?'.$_server['query_string'];
}
//判断用户登录状态
checkauth();
//用户菜单
getuserapp();
//处理uc应用,这个是漫游相关菜单,在此不用解释
$_sglobal['appmenus'] = $_sglobal['appmenu'] = array();
if($_sglobal['app']) {
foreach ($_sglobal['app'] as $value) {
if($value['open']) {
if(emptyempty($_sglobal['appmenu'])) {
$_sglobal['appmenu'] = $value;
} else {
$_sglobal['appmenus'][] = $value;
}
}
}
}
?>