fork(1) download
  1. <?php
  2.  
  3. $doc = new DOMDocument();
  4.  
  5. $root = $doc->createElement('html');
  6. $doc->appendChild($root);
  7.  
  8. $head = $doc->createElement('head');
  9. $root->appendChild($head);
  10.  
  11. var_dump($doc->nodeType);
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
int(9)