fork download
  1. <?php
  2.  
  3. $dom = new DOMDocument();
  4. $dom->preserveWhiteSpace = true;
  5. $dom->resolveExternals = false;
  6. $dom->recover = true;
  7. $dom->encoding = 'UTF-8';
  8.  
  9. $html = ''; // fetch whatever HTML
  10. $dom->loadHTML('<?xml version="1.0" encoding="UTF-8"?>'."\n".$html);
  11. $dom->encoding = 'UTF-8';
  12.  
Runtime error #stdin #stdout #stderr 0.01s 82880KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Fatal error:  Uncaught Error: Class 'DOMDocument' not found in /home/UW26m4/prog.php:3
Stack trace:
#0 {main}
  thrown in /home/UW26m4/prog.php on line 3