HOME
DOMAIN
WEB HOST
AUTO Site
VPS SERVER
CLOUD HOST
SERVER
HK HOST
AGENT
SERVICE
//方法一,代码如下: 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]);//开源代码phpfensi.com //方法三,代码如下: preg_match_all('/<a[^>]*>[^<]*</a>/i',$string,$matches); print_r($matches[0]); //方法四,代码如下: preg_match_all('/<a.+?>check user</a>/is',$str,$arr);