- //方法一,代码如下:
- 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]);//开源代码Vevb.com
- //方法三,代码如下:
- preg_match_all('/<a[^>]*>[^<]*</a>/i',$string,$matches);
- print_r($matches[0]);
- //方法四,代码如下:
- preg_match_all('/<a.+?>check user</a>/is',$str,$arr);
新闻热点
疑难解答