PHP全局变量获取数据,php中获取所在全局变量方法

$globals --- 保存所有全局变量(只在当前页面中的) get_defined_vars() --- 返回由所有已定义变量所组成的数组(包括全局变量,超全局变量等) get_defined_constants() --- 返回由所有已定义常量所组成的数组

function cleanglobal($global_array, $arg, $specialchars = true, $default = null) {

if(key_exists($arg, $global_array) && $global_array[$arg] != null && $global_array[$arg] != "") {

if($specialchars) {

return htmlspecialchars($global_array[$arg]);

} else {

return $global_array[$arg];

}

} else {

return $default;

}

}

table of contents

superglobals — superglobals are built-in variables that are always available in all scopes

$globals — references all variables available in global scope

$_server — server and execution environment information

$_get — http get variables

$_post — http post variables

$_files — http file upload variables

$_request — http request variables

$_session — session variables

$_env — environment variables

$_cookie — http cookies

$php教程_errormsg — the previous error message

$http_raw_post_data — raw post data

$http_response_header — http response headers

$argc — the number of arguments passed to script

$argv — array of arguments passed to script

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值