日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

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

發布時間:2023/12/10 php 42 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php 取url根域名,php中取得URL的根域名的代码 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

/**

* 取得根域名

*

* @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;

}

}

?>

原文:http://www.jb51.net/article/26610.htm

總結

以上是生活随笔為你收集整理的php 取url根域名,php中取得URL的根域名的代码的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。