本文介紹下,在php中,獲取域名以及域名對應的IP地址的方法,有須要的朋友參考下。
在php中能夠使用內置函數gethostbyname獲取域名對應的IP地址,好比:
2 |
echo gethostbyname ( "www.jbxue.com" ); |
以上會輸出域名所對應的的IP。
對於作了負載與cdn的域名來說,可能返回的結果會有不一樣,這點注意下。php
下面來講說獲取域名的方法,例若有一段網址:http://www.jbxue.com/all-the-resources-of-this-blog.html
方法1,html
複製代碼代碼示例:
//全局數組
echo $_SERVER[「HTTP_HOST」];
//則會輸出www.jbxue.com
本地測試則會輸出localhost。正則表達式
方法2,使用parse_url函數;數組
2 |
$url = "http://www.jbxue.com/index.php?referer=jbxue.com" ; |
輸出爲數組,結果爲:xcode
Array
(
[scheme] => http
[host] => www.jbxue.com
[path] => /index.php
[query] => referer=jbxue.com
)
說明:
scheme對應着協議,host則對應着域名,path對應着執行文件的路徑,query則對應着相關的參數;函數
方法3,採用自定義函數。測試
02 |
$url = "http://www.jbxue.com/index.php?referer=jbxue.com" ; |
04 |
function get_host( $url ){ |
06 |
$url = Str_replace ( "http://" , "" , $url ); |
07 |
//得到去掉http://url的/最早出現的位置 |
08 |
$position = strpos ( $url , "/" ); |
09 |
//若是沒有斜槓則代表url裏面沒有參數,直接返回url, |
14 |
echo substr ( $url ,0, $position ); |
方法4,使用php正則表達式。this
2 |
header( "Content-type:text/html;charset=utf-8" ); |
3 |
$url = "http://www.jbxue.com/index.php?referer=jbxue.com" ; |
4 |
$pattern = "/(http:\/\/)?(.*)\//" ; |
5 |
if (preg_match( $pattern , $url , $arr )){ |