php教程 preg_match_all正则匹配字符串所有连接地址
*/
$str ='<a href="http://www.a.com/2010/11-15/5.html">4</a>
<a href="http://www.b.com/2010/11-15/6.html">5</a>
<a href="http://www.b.com/2010/11-15/1.html">6</a>
';
$ymd=date("y")."/".date("m-d");
$b = preg_match_all('/<a href="(.*?)com/'.$ymd.'(.*?)html">(.*?)</a>/',$a,$c,preg_set_order);
/*
int preg_match_all ( string $pattern , string $subject , array &$matches [, int $flags [, int $offset ]] );搜索所有匹配正则表达式的模式并提出给予他们在比赛中受的标志指定的顺序。第一场比赛后发现,随后的搜查是继续从最后一场比赛结束。
更多详细内容请查看:http://www.111cn.net/phper/php-cy/33670.htm
时间: 2024-10-23 10:04:42