标签: php preg-match
如何按preg_match匹配字符串中的下一行? 我试过,代码如下。
preg_match
$str = "== heading == strint1... strint2... strint3... strint4..."; preg_match_all("/==\sheading\s==((?:.|[\r\n])+)/i",$str,$res);
大部分时间它的工作正常,但有时它不起作用(页面只是加载)。