preg_match_all("/<(a|a)[s]{0,1}[w=":()]*>[ ]*(check user)[ ]*</(a|a)>/i",$string,$matches);
preg_match_all("/<a[dd]*>check user</a>/i",$string,$matches);print_r($matches[0]);
preg_match_all("/<a[^>]*>[^<]*</a>/i",$string,$matches);print_r($matches[0]);//方法四
preg_match_all("/<a.+?>check user</a>/is",$str,$arr);//方法五
preg_match_all("/<a.+?>check user</a>/is",$str,$arr);以上就是小编跟大家介绍的php获取超链接文本内容的正则表达式(五种方法),希望大家喜欢。