我正在做一些 HTML DOM 操作:
function parse_html($html) {
$dom->loadHTML($html);
libxml_clear_errors();
// Parse DOM
return $dom->saveHTML();
}
问题是我的 HTML 包含一些 PHP 代码,其中一些被转换为 HTML 实体。例如,如果$html
包含以下内容:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<?php // lang=es
$pwd = $parameter['pwd'];
$url = $parameter['url'];
?>
<p>
You are now registered. Go to ->
<a href="<?php echo $url ?>">control panel</a>
to change the settings.
</p>
它变成了这样:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head><meta http-equiv="content-type" content="text/html; charset=UTF-8"></head>
<body>
<?php // lang=es
$pwd = $parameter['pwd'];
$url = $parameter['url'];
?><p> You are now registered. Go to -> <a href="<?php%20echo%20%24url%20?>">control panel</a> to change the settings.
</p>
</body>
</html>
在<?php echo $url ?>
实体中转换,但我不能使用像 *html_entity_decode* 这样的函数,因为它也会解码一些必须保持实体的实体。
如何解析包含 PHP 代码的 DOM?