首页 > 语言 > PHP > 正文

php获取超链接文本内容的几款正则表达式

2024-09-04 11:47:33
字体:
来源:转载
供稿:网友
  1. //方法一,代码如下: 
  2.  
  3. preg_match_all('/<(a|a)[s]{0,1}[w=":()]*>[ ]*(check user)[ ]*</(a|a)>/i',$string,$matches); 
  4.  
  5. //方法二,代码如下: 
  6.  
  7. preg_match_all('/<a[dd]*>check user</a>/i',$string,$matches); 
  8. print_r($matches[0]);//开源代码Vevb.com 
  9.  
  10. //方法三,代码如下: 
  11.  
  12. preg_match_all('/<a[^>]*>[^<]*</a>/i',$string,$matches); 
  13. print_r($matches[0]); 
  14.  
  15. //方法四,代码如下: 
  16.  
  17. preg_match_all('/<a.+?>check user</a>/is',$str,$arr); 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表