在PHP的官網上看到的parse_url()函數的替代方案。結果和parse_url()函數差不多,是使用正則實現的。URI 是 Web上可用的每種資源 - HTML文檔、圖像、視頻片段、程序等 - 由一個通用資源標志符(Uniform Resource Identifier, 簡稱"URI")進行定位。 對象分組:
復制代碼 代碼如下:
^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(/?([^#]*))?(#(.*))?
12            3  4        
復制代碼 代碼如下:
<?php
$search = '~^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(/?([^#]*))?(#(.*))?~i';
$url = 'http://m.survivalescaperooms.com/pub/ietf/uri/#Gonn';
$url = trim($url);
preg_match_all($search, $url ,$rr);
printf("<p>輸出URL數據為:</p><pre>%s</pre>/n",var_export( $rr ,TRUE));
/*
各分組如下
      $1 = http:
      $2 = http
      $3 = //www.nowamagic.net
      $4 = 
      $5 = /pub/ietf/uri/
      $6 = <undefined>
      $7 = <undefined>
      $8 = #Gonn
      $9 = Gonn
*/
?>
復制代碼 代碼如下:
<?php 
// 從 URL 中取得主機名 
preg_match("/^(http:////)?([^//]+)/i", "http://m.survivalescaperooms.com/index.html", $matches); 
$host = $matches[2]; 
// 從主機名中取得后面兩段 
preg_match("/[^/.//]+/.[^/.//]+$/", $host, $matches); 
echo "domain name is: {$matches[0]}/n"; 
?>
新聞熱點
疑難解答