记住用户名密码
通过代码讲解php获取超链接文本内容的正则表达式。
//方法一
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[dd]*>check user</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);
目前有 0 条留言 其中:访客:0 条, 博主:0 条