我想<div id="navigation"></div>
使用正则表达式从 html 内容(字符串)中提取标签之间的数据。任何帮助表示赞赏。
`$html = 加载($url);
preg_match_all ("/<div>(.+?)<\/div>/is",
$html, &$matches);
$matches = $matches[1];
$list = array();
foreach($matches as $var)
{
print("<br>");
print($var."<br>");
}`
在这里,我想从特定的 div 标签中检索数据。