mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
18 lines
381 B
PHP
18 lines
381 B
PHP
--TEST--
|
|
Getting the address of an uninitialized property of a SimpleXMLElement
|
|
--EXTENSIONS--
|
|
simplexml
|
|
--FILE--
|
|
<?php
|
|
|
|
$rc = new ReflectionClass('SimpleXMLElement');
|
|
$sxe = $rc->newInstanceWithoutConstructor();
|
|
$sxe->a['b'] = 'b';
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: SimpleXMLElement is not properly initialized in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|