I'm doing some HTML DOM manipulations:
function parse_html($html) {
$dom->loadHTML($html);
libxml_clear_errors();
// Parse DOM
return $dom->saveHTML();
}
The problem is my HTML contains some PHP code and some of them is transformed in HTML entities. For example if $html contains this:
<!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>
It's transformed in this:
<!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>
The <?php echo $url ?> is converted in entities, but I cannot use a function like *html_entity_decode* because it will decode also some entities that must remain entities.
How can I parse a DOM that contains PHP code?