SimpleXMLElement_getDocNamespaces.phpt 168 B

123456789
  1. --TEST--
  2. Testing getDocNamespaces() with invalid XML
  3. --FILE--
  4. <?php
  5. $xml = @new SimpleXMLElement("X",1);
  6. var_dump($xml->getDocNamespaces());
  7. ?>
  8. --EXPECTF--
  9. bool(false)