>  기사  >  백엔드 개발  >  PHP를 사용하여 URL에서 도메인 이름을 얻는 예

PHP를 사용하여 URL에서 도메인 이름을 얻는 예

WBOY
WBOY원래의
2016-07-25 08:59:471717검색
如何用php代码获取Url中的domain(域名)呢?本文给大家一个参考代码,有需要的朋友,可以看看哦。

例1,

<?php
/**
 Url中取主机域名
 http://bbs.it-home.org
*/
function getExt($url){   
$arr = parse_url($url);     
$file = $arr['host'];   
$ext = substr($file,strpos($file,".")+1);   
return $ext;
}

//调用示例
$url="http://www.baidu.com/path.php?arg=value#anchor";
$qa=getExt($url);
var_dump($qa);
?>

例2,

<?php  
    // 从 URL 中取得主机名  
    preg_match("/^(http:\/\/)?([^\/]+)/i",  
    " http://www.php.net/index.html", $matches);  
    $host = $matches[2];  
      
    // 从主机名中取得后面两段  
    preg_match("/[^\.\/]+\.[^\.\/]+$/", $host, $matches);  
    echo "domain name is: {$matches[0]}\n";  
?>


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.