blob: 77abe3301dc51f02debf86afcb2723e78fe6ac72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--TEST--
Testing getDocNamespaces() with invalid XML
--SKIPIF--
<?php if (!extension_loaded('simplexml')) die('skip simplexml extension not loaded'); ?>
--FILE--
<?php
$xml = @new SimpleXMLElement("X",1);
var_dump($xml->getDocNamespaces());
?>
--EXPECT--
bool(false)
|