mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
11 lines
267 B
PHP
11 lines
267 B
PHP
--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)
|