php中取得URL的根域名的代码


Posted in PHP onMarch 23, 2011
<?php 
/** 
* 取得根域名 
* 
* @author lonely 
* @create 2011-3-11 
* @version 0.1 
* @lastupdate lonely 
* @package Sl 
*/ 
class Sl_RootDomain{ 
private static $self; 
private $domain=null; 
private $host=null; 
private $state_domain; 
private $top_domain; 
/** 
* 取得域名分析实例 
* Enter description here ... 
*/ 
public static function instace(){ 
if(!self::$self) 
self::$self=new self(); 
return self::$self; 
} 
private function __construct(){ 
$this->state_domain=array( 
'al','dz','af','ar','ae','aw','om','az','eg','et','ie','ee','ad','ao','ai','ag','at','au','mo','bb','pg','bs','pk','py','ps','bh','pa','br','by','bm','bg','mp','bj','be','is','pr','ba','pl','bo','bz','bw','bt','bf','bi','bv','kp','gq','dk','de','tl','tp','tg','dm','do','ru','ec','er','fr','fo','pf','gf','tf','va','ph','fj','fi','cv','fk','gm','cg','cd','co','cr','gg','gd','gl','ge','cu','gp','gu','gy','kz','ht','kr','nl','an','hm','hn','ki','dj','kg','gn','gw','ca','gh','ga','kh','cz','zw','cm','qa','ky','km','ci','kw','cc','hr','ke','ck','lv','ls','la','lb','lt','lr','ly','li','re','lu','rw','ro','mg','im','mv','mt','mw','my','ml','mk','mh','mq','yt','mu','mr','us','um','as','vi','mn','ms','bd','pe','fm','mm','md','ma','mc','mz','mx','nr','np','ni','ne','ng','nu','no','nf','na','za','aq','gs','eu','pw','pn','pt','jp','se','ch','sv','ws','yu','sl','sn','cy','sc','sa','cx','st','sh','kn','lc','sm','pm','vc','lk','sk','si','sj','sz','sd','sr','sb','so','tj','tw','th','tz','to','tc','tt','tn','tv','tr','tm','tk','wf','vu','gt','ve','bn','ug','ua','uy','uz','es','eh','gr','hk','sg','nc','nz','hu','sy','jm','am','ac','ye','iq','ir','il','it','in','id','uk','vg','io','jo','vn','zm','je','td','gi','cl','cf','cn','yr' 
); 
$this->top_domain=array('com','arpa','edu','gov','int','mil','net','org','biz','info','pro','name','museum','coop','aero','xxx','idv','me','mobi'); 
$this->url=$_SERVER['HTTP_HOST']; 
} 
/** 
* 设置URL 
* Enter description here ... 
* @param string $url 
*/ 
public function setUrl($url=null){ 
$url=$url?$url:$this->url; 
if(empty($url))return $this; 
if(!preg_match("/^http::/is", $url)) 
$url="http://".$url; 
$url=parse_url(strtolower($url)); 
$urlarr=explode(".", $url['host']); 
$count=count($urlarr); 
if ($count<=2){ 
$this->domain=array_pop($url); 
}else if ($count>2){ 
$last=array_pop($urlarr); 
$last_1=array_pop($urlarr); 
if(in_array($last, $this->top_domain)){ 
$this->domain=$last_1.'.'.$last; 
$this->host=implode('.', $urlarr); 
}else if (in_array($last, $this->state_domain)){ 
$last_2=array_pop($urlarr); 
if(in_array($last_1, $this->top_domain)){ 
$this->domain=$last_2.'.'.$last_1.'.'.$last; 
$this->host=implode('.', $urlarr); 
}else{ 
$this->host=implode('.', $urlarr).$last_2; 
$this->domain=$last_1.'.'.$last; 
} 
} 
} 
return $this; 
} 
/** 
* 取得域名 
* Enter description here ... 
*/ 
public function getDomain(){ 
return $this->domain; 
} 
/** 
* 取得主机 
* Enter description here ... 
*/ 
public function getHost(){ 
return $this->host; 
} 
} 
?>
PHP 相关文章推荐
php面向对象全攻略 (十二) 抽象方法和抽象类
Sep 30 PHP
php对象在内存中的存在形式分析
Feb 03 PHP
CentOS下PHP7的编译安装及MySQL的支持和一些常见问题的解决办法
Dec 17 PHP
PHP实现批量上传单个文件
Dec 29 PHP
php实现的xml操作类
Jan 15 PHP
PHP邮箱验证示例教程
Jun 01 PHP
CI框架实现框架前后端分离的方法详解
Dec 30 PHP
php 调用ffmpeg获取视频信息的简单实现
Apr 03 PHP
php实现头像上传预览功能
Apr 27 PHP
PHP弱类型语言中类型判断操作实例详解
Aug 10 PHP
laravel框架实现去掉URL中index.php的方法
Oct 12 PHP
50个优秀经典PHP算法大集合 附源码
Aug 26 PHP
PHP+JS+rsa数据加密传输实现代码
Mar 23 #PHP
PHP 事件机制(2)
Mar 23 #PHP
php函数之子字符串替换&amp;#65279; str_replace
Mar 23 #PHP
php expects parameter 1 to be resource, array given 错误
Mar 23 #PHP
php去掉字符串的最后一个字符附substr()的用法
Mar 23 #PHP
PHPUnit PHP测试框架安装方法
Mar 23 #PHP
开启CURL扩展,让服务器支持PHP curl函数(远程采集)
Mar 19 #PHP
You might like
php fsockopen解决办法 php实现多线程
2014/01/20 PHP
PHPer 需要了解的 5 个 Composer 小技巧
2014/08/18 PHP
使用Appcan客户端自动更新PHP版本号(全)
2015/07/31 PHP
YII Framework框架教程之使用YIIC快速创建YII应用详解
2016/03/15 PHP
php图片裁剪函数
2018/10/31 PHP
js 弹出菜单/窗口效果
2011/10/30 Javascript
IE与Firefox在JavaScript上的7个不同句法分享
2011/10/30 Javascript
深入理解逻辑表达式的用法 与或非的用法
2016/06/06 Javascript
浅谈angularJS中的事件
2016/07/12 Javascript
浅谈javascript运算符——条件,逗号,赋值,()和void运算符
2016/07/15 Javascript
angularjs封装$http为factory的方法
2017/05/18 Javascript
详解express + mock让前后台并行开发
2018/06/06 Javascript
JS Object.preventExtensions(),Object.seal()与Object.freeze()用法实例分析
2018/08/25 Javascript
使用ESLint禁止项目导入特定模块的方法步骤
2019/03/04 Javascript
解决vue的过渡动画无法正常实现问题
2019/10/31 Javascript
uniapp实现可滑动选项卡
2020/10/21 Javascript
[03:09]DOTA2亚洲邀请赛 LGD战队出场宣传片
2015/02/07 DOTA
Python导入模块时遇到的错误分析
2017/08/30 Python
实例讲解Python脚本成为Windows中运行的exe文件
2019/01/24 Python
python3实现指定目录下文件sha256及文件大小统计
2019/02/25 Python
浅谈python常用程序算法
2019/03/22 Python
75条笑死人的知乎神回复,用60行代码就爬完了
2019/05/06 Python
Python数据类型之String字符串实例详解
2019/05/08 Python
Python除法之传统除法、Floor除法及真除法实例详解
2019/05/23 Python
NumPy统计函数的实现方法
2020/01/21 Python
Scrapy框架实现的登录网站操作示例
2020/02/06 Python
快速解释如何使用pandas的inplace参数的使用
2020/07/23 Python
奥林匹亚体育:Olympia Sports
2020/12/30 全球购物
中学生运动会口号
2014/06/07 职场文书
树转促学习心得体会
2014/09/10 职场文书
党员个人整改方案及措施
2014/10/25 职场文书
保险内勤岗位职责
2015/04/13 职场文书
学校勤俭节约倡议书
2015/04/29 职场文书
一篇文章弄懂MySQL查询语句的执行过程
2021/05/07 MySQL
Redis如何实现分布式锁
2021/08/23 Redis
前端canvas中物体边框和控制点的实现示例
2022/08/05 Javascript