当前位置:首页 > PHP教程 > php应用 > 列表

php用正则表达式匹配URL的简单方法

发布:smiling 来源: PHP粉丝网  添加日期:2020-06-23 16:18:11 浏览: 评论:0 

在PHP的官网上看到的parse_url()函数的替代方案。结果和parse_url()函数差不多,是使用正则实现的。URI 是 Web上可用的每种资源 - HTML文档、图像、视频片段、程序等 - 由一个通用资源标志符(Uniform Resource Identifier, 简称"URI")进行定位,对象分组:

  1. ^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))? 
  2. 12            3  4 

测试代码如下:

  1. <?php 
  2. $search = '~^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?~i'
  3. $url = 'https://www.phpfensi.com/pub/ietf/uri/#Gonn'
  4. $url = trim($url); 
  5. preg_match_all($search$url ,$rr); 
  6. printf("<p>输出URL数据为:</p><pre>%s</pre>\n",var_export( $rr ,TRUE)); 
  7.  
  8. /* 
  9. 各分组如下 
  10.       $1 = http: 
  11.       $2 = http 
  12.       $3 = //www.phpfensi.com 
  13.       $4 = www.phpfensi.com
  14.       $5 = /pub/ietf/uri/ 
  15.       $6 = <undefined> 
  16.       $7 = <undefined> 
  17.       $8 = #Gonn 
  18.       $9 = Gonn 
  19. */ 
  20. ?> 

上面的正则表达式可以获取URL中的任何一部分,下面的代码则简单一些:

  1. <?php  
  2. // 从 URL 中取得主机名  
  3. preg_match("/^(http:\/\/)?([^\/]+)/i""https://www.phpfensi.com/index.html"$matches);  
  4. $host = $matches[2];  
  5. // 从主机名中取得后面两段  
  6. preg_match("/[^\.\/]+\.[^\.\/]+$/"$host$matches);  
  7. echo "domain name is: {$matches[0]}\n";  
  8. ?> 

Tags: 正则表达式 匹配URL

分享到: