fork(1) download
  1. <?php
  2.  
  3. header("Content-Type: text/plain");
  4.  
  5. $doc = new DOMDocument();
  6. $el = $doc->createElement('div', 'test & test');
  7. $doc->appendChild($el);
  8.  
  9. $html = $doc->saveHtml();
  10. echo $html;
  11.  
Success #stdin #stdout #stderr 0.01s 20568KB
stdin
Standard input is empty
stdout
<div></div>
stderr
PHP Warning:  DOMDocument::createElement(): unterminated entity reference            test in /home/erRZNb/prog.php on line 7