function getServerName()
{
$ServerName = strtolower($_SERVER['SERVER_NAME']?$_SERVER['SERVER_NAME']:$_SERVER['HTTP_HOST']);
if( strpos($ServerName,'http://') )
{
return str_replace('http://','',$ServerName);
}
return $ServerName;
}
//实例调用方法
echo $getServerName;
/*
函数说明:
strtolower 把字母转换成不写
str_replace 替换指定的内容
strpos 判断字符是否正在指定字符串中
$_SERVER php全局变量
本站原创教程,转载注明来源www.111cn.net
*/