VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php 正则得到url的地址代码

  1. //方法一代码如下    
  2. $str = '<a href="http://www.phpfensi.com" target="_blank" name="doc3_p"><img src="" onload="setImgSize(this,170,170);"></a>'
  3.    preg_match_all ('|^<a href="(.*)".*|U',$str,$out, PREG_PATTERN_ORDER); 
  4.    print_r($out); 
  5.  
  6. //方法二代码如下 
  7. preg_match_all('/href=['"]+(.*)['"]+/',$str,$matches); 
  8. var_dump($matches[1]); 
  9.  
  10. //方法三代码如下 
  11. //(?<=<as*)href=[^ '">]+ 
  12.  
  13. //方法四代码如下 
  14. preg_match("/<as*href="(.*?)"[^>]*>.*?</a>/is"$str$aMatch); 
  15. print_r($aMatch[1]); 
  16.  
  17. //方法五代码如下 
  18. preg_match_all('/href=('|"|s)*([^'">s]+)/i',$str,$match); 
  19. print_r($match); 
  20.  
  21. preg_match_all('/src=('|"|s)*([^'">s]+)/i',$str,$match); 
  22. print_r($match); 

上面这正则得到url的地址都是用了php正则表达试来实现的,只是方法有一点不同了.


出处:http://www.phpfensi.com/php/20140817/4367.html


相关教程