如何使用PHP提取特定标签`<h1>`?

时间:2019-02-03 13:21:52

标签: php html

我正在尝试从许多<h1>标签中提取一个<h1>

例如:

$html = "
       <h1>My first paragraph</h1>
       <h1>My second one</h1>
       <h1>**I want to extract this**</h1>
             ";

我使用了preg_match,但是它仅提取第一个。

$reg = "#<h1>(.*)</h1>#";
 preg_match($reg, $html,$match);
 echo $match[1];

0 个答案:

没有答案