when you were my girl php中取得URL的根網域的代碼

WBOY
發布: 2016-07-29 08:44:37
原創
844 人瀏覽過

複製程式碼程式碼如下:


/**
* 取得根網域
*
* @author lonely
* @create 2011-3-11
* @version 0.1
* @lastupdate lonely
* @version 0.1
* @lastupdate lonely
* @package
*/
class Sl_RootDoJ 私有靜態$self;
私有$domain=null;
私有$host=null;
私人$state_domain;
私有$top_domain;
/**
* 取得網域分析實例
* Enter description here ...
*/
public static function instace(){
if(!self::$self)
self::$self=new self();
回自我::$自我;
}
私有函數__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','我的','ml','mk','mh','mq ',' yt','mu','先生','我們','嗯','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','名稱','博物館','coop','aero','xxx','idv','我','mobi') ;
$this->url=$_SERVER['HTTP_HOST'];
}
/**
* 設定 URL
* 在此輸入描述...
* @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$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;
}
}
}
回傳$this;
}
/**
* 取得網域名稱
* Enter description here ...
*/
public function getDomain(){
return $this->domain;
}
/**
* 取得主機
* Enter description here ...
*/
public function getHost(){
return $this->host;
}
}
? >

以上就介紹了當你是我的女孩php中獲取URL的根域名的代碼,包括當你是我的女孩方面的內容,希望對PHP教程有興趣的朋友有所幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!