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