規則性はどのようにして同時に 2 つのパターンに一致するのでしょうか
言いたいことを明確に表現する方法がわかりません。たとえば、
<!-- 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 ) )