要素のタグ間で内容を一致させるために、PHPの正規表現が必要です。 <body>
および</body>
perl互換性preg_match
です。PHPのHTML本文の内容と一致する正規表現
は、これまで私が試した:
// $content is a string with html content
preg_match("/<body(.|\r\n)*\/body>/", $content, $matches);
print_r($matches);
...しかし、プリントアウトは空の配列です。ドキュメントで説明し
preg_match("/<body.*\/body>/s", $content, $matches);
:
おかげで、それは働きました! – Spoike