废话不多说了,直接跟大家分享五种方法,通过代码讲解php获取超链接文本内容的正则表达式。
//方法一
?| 1 |
preg_match_all("/<(a|a)[s]{0,1}[w=":()]*>[ ]*(check user)[ ]*</(a|a)>/i",$string,$matches);
|
//方法二
?| 1 2 |
preg_match_all("/<a[dd]*>check user</a>/i",$string,$matches);
print_r($matches[0]);
|
//方法三
?| 1 2 |
preg_match_all("/<a[^>]*>[^<]*</a>/i",$string,$matches);
print_r($matches[0]);
|
//方法四
?| 1 |
preg_match_all("/<a.+?>check user</a>/is",$str,$arr);
|
//方法五
?| 1 |
preg_match_all("/<a.+?>check user</a>/is",$str,$arr);
|
以上就是小编跟大家介绍的php获取超链接文本内容的正则表达式(五种方法),希望大家喜欢。








发表评论
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。