首頁  >  文章  >  後端開發  >  PHP正規符合取得URL中網域的代碼

PHP正規符合取得URL中網域的代碼

WBOY
WBOY原創
2016-07-25 09:00:292433瀏覽
用php的正则表达式来获取URL中的域名,举了两个小例子,简单而实用,有需要的朋友,快来看看吧。

URL 一个通用资源标志符(Uniform Resource Identifier, 简称"URI")进行定位。 对象分组: ^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(?([^#]*))?(#(.*))? 12 3 4 5 6 7 8 9

例1,

<?php
 $search = '~^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?~i';
 $url = 'http://bbs.it-home.org/pub/ietf/uri/#Gonn';
 $url = trim($url);
 preg_match_all($search, $url ,$rr);
 printf("<p>输出URL数据为:</p><pre class="brush:php;toolbar:false">%s
n",var_export( $rr ,TRUE)); /* 各分组如下 = http: = http = //bbs.it-home.org = bbs.it-home.org = /pub/ietf/uri/ = = = #Gonn = Gonn */ ?>

以上的正则表达式可以获取URL中的任何一部分。 下面这段代码更简洁,易懂一些。

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


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn