标签:ges 域名 val 添加 images name image 技术 .com
域名授权函数
function allow_doamin(){
$is_allow=false;
$url=trim($_SERVER[‘SERVER_NAME‘]);
$arr_allow_domain=array("4001.com");//这里可以添加多个授权域名
foreach($arr_allow_domain as $value){
$value=trim($value);
$tmparr=explode($value,$url);
if(count($tmparr)>1){
$is_allow=true;
break;
}
}
if(!$is_allow){
echo "域名未授权";
}
}
allow_doamin();
标签:ges 域名 val 添加 images name image 技术 .com
原文地址:http://www.cnblogs.com/-lsf/p/6881723.html