<code>$html = title EOF; $isMatched = preg_match('/<a>(.*?)/', $html, $matches);</a></code>
<code>$html = title EOF; $isMatched = preg_match('/<a>(.*?)/', $html, $matches);</a></code>
那你就要用贪婪匹配咯~/<a>(.*?)/</a>
你用.*?
后面跟"
他只要匹配到下一字符是"
就停止了
是用禁止贪婪匹配U
个人经验 你写正则的时候都加上Uis
'/