Discuz-X模板教程 G变量注解之 $_G['xxx'] 全局基本变量
发布:smiling 来源: PHP粉丝网 添加日期:2014-04-02 14:57:46 浏览: 评论:0
全局变量系统篇
$_G['uid'] => 当前登录UID
$_G['username'] => 当前登录用户名
$_G['adminid'] => 当前登录ID管理组ID
$_G['groupid'] => 当前登录ID用户组ID
$_G['cookie'] => 客户端cookie
$_G['formhash'] => 当前登录ID的【FORMHASH】 主要用于表单提交
$_G['timestamp'] => 当前活动时间
$_G['starttime'] => 1317042440.3242
$_G['clientip'] => 当前访问者IP地址
$_G['referer'] => 当前请求的地址,主要用户表单提交
$_G['charset'] => 程序编码
$_G['PHP_SELF'] => 当前访问页面的相对地址
$_G['siteurl'] => 程序访问地址
$_G['siteroot'] => 程序所在域名的相对目录
$_G['fid'] => 当前版块id【主题列表页、帖子页】出现
$_G['tid'] => 当前帖子ID【帖子页】出现
$_G['basescript'] => 当前页面所在频道
$_G['basefilename'] => 当前页面php文件名
$_G['staticurl'] => 程序附件目录
$_G['mod'] => 当前页面的MOD值【例如:forum.php?mod=xxx】
$_G['inajax'] => 当前ajax请求的值【无-0 有-1】
$_G['page'] => 当前分页ID
$_G['tpp'] => 当前分页每页显示数量
$_G['seokeywords'] => 当前页面seo关键词
$_G['seodescription'] => 当前页面seo介绍
$_G['timenow'] => Array
(
[time] => 2011-9-26 21:07 当前服务器时间
[offset] => +8 当前服务器时区
)
$_G['config'] => Array
(
$_G['config'][db] => Array
(
$_G['config'][db][1] => Array
(
$_G['config'][db][1][dbhost] => localhost 数据库连接地址
$_G['config'][db][1][dbuser] => root 数据库用户名
$_G['config'][db][1][dbpw] => 123456 数据库密码
$_G['config'][db][1][dbcharset] => utf8 数据库编码
$_G['config'][db][1][pconnect] => 0
$_G['config'][db][1][dbname] => dxutf 数据库名
$_G['config'][db][1][tablepre] => pre_ 数据表前缀
)
)
)
Tags: Discuz-X 变量 注解 全局
相关文章
- ·Discuz-X模板教程 G变量注解之$_G['setting'] 全局后台各项设置(2014-04-02)
- ·Discuz-X模板教程 G变量注解之 $_G['style'] 全局可用的风格变量(2014-04-02)
- ·discuz X3全局变量$_G(2014-01-10)
- ·discuz X3全局变量$_G(2014-03-31)
- ·Discuz!中 $_G变量的使用方法(2014-07-22)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)