mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
57 lines
1.2 KiB
PHP
57 lines
1.2 KiB
PHP
--TEST--
|
|
Incorrectly initialized SimpleXmlElement
|
|
--FILE--
|
|
<?php
|
|
|
|
class MySXE extends SimpleXMLElement {
|
|
public function __construct() {
|
|
/* yolo */
|
|
}
|
|
}
|
|
|
|
$sxe = new MySXE;
|
|
try {
|
|
var_dump($sxe->count());
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
try {
|
|
var_dump($sxe->xpath(''));
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
try {
|
|
var_dump($sxe->getDocNamespaces());
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
try {
|
|
var_dump($sxe->children());
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
try {
|
|
var_dump($sxe->attributes());
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
try {
|
|
var_dump($sxe->registerXPathNamespace('', ''));
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
try {
|
|
var_dump($sxe->foo);
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
SimpleXMLElement is not properly initialized
|
|
SimpleXMLElement is not properly initialized
|
|
SimpleXMLElement is not properly initialized
|
|
SimpleXMLElement is not properly initialized
|
|
SimpleXMLElement is not properly initialized
|
|
SimpleXMLElement is not properly initialized
|
|
SimpleXMLElement is not properly initialized
|