I have the following example code:

<?php

$html_string = <<<HTML
<!DOCTYPE HTML>
<html lang="en-US">
<head>
  <meta charset="UTF-8">
  <title></title>
</head>
<body>

  <div id="target">
    This is the target DIV! <span>This span will disappear!</span>
  </div>

</body>
</html>
HTML;

$dom = new DOMDocument();
$dom->loadHTML($html_string);                           //Load from string

$target = $dom->getElementById("target");               //Retrieve target element
$span = $target->getElementsByTagName("span")->item(0); //Retrieve first (0th) span from target element
$target->removeChild($span);                            //Remove it

$html_string = $dom->saveHTML();                        //Save back to string

echo $html_string;

This code is wrongly highlighted, the heredoc string doesn't get highlighted, which messes up the whole form.

share|improve this question
:o from 2008! No less! – Madara Uchiha Jun 12 '12 at 15:43

You must log in to answer this question.

Browse other questions tagged