php 获取全局变量的代码

前端之家收集整理的这篇文章主要介绍了php 获取全局变量的代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="58880" class="copybut" id="copybut58880" onclick="doCopy('code58880')"> 代码如下:

<div class="codebody" id="code58880">
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;
}
}

猜你在找的PHP相关文章