php获取超链接文本内容的正则表达式(五种方法)

废话不多说了,直接跟大家分享五种方法,通过代码讲解php获取超链接文本内容的正则表达式。

//方法一 

preg_match_all("/<(a|a)[s]{0,1}[w=":()]*>[ ]*(check user)[ ]*/i",$string,$matches);

//方法二

preg_match_all("/check user/i",$string,$matches);
print_r($matches[0]);

//方法三

preg_match_all("/]*>[^<]*/i",$string,$matches);
print_r($matches[0]);

//方法四

preg_match_all("/check user/is",$str,$arr);

//方法五

preg_match_all("/check user/is",$str,$arr);

以上就是小编跟大家介绍的php获取超链接文本内容的正则表达式(五种方法),希望大家喜欢。

你可能感兴趣的:(php获取超链接文本内容的正则表达式(五种方法))