正则如何同时匹配两种模式
我不知道怎么表达清楚我的意思,举个例子
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->$content = "xxxhttp://xxx.com/hello.htmlxxx"; preg_match_all( "/http:\/\/xxx\.com\/[\w|']{4,17}\.html/iUs", $content, $result); // 将会得到结果 array( [0] => array( [0] => http://xxx.com/hello.html ) )