我有 HTML 输出并想在 HTML DOM 上搜索特定元素,让我们说:
<html>
<body>
<div id="post">
<div>
<h3><a>Post Title Here</a></h3>
</div>
</div>
</body>
</html>
通过该 HTML 输出,我想使用 preg_match 函数获取标签内的文本。我将如何在 preg_match 上对其进行格式化?
答案非常感谢!