mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
15 lines
298 B
PHP
15 lines
298 B
PHP
--TEST--
|
|
GH-16187 (ReflectionClass::__toString() with unpacked properties)
|
|
--EXTENSIONS--
|
|
simplexml
|
|
--FILE--
|
|
<?php
|
|
$xml = '<form name="test"></form>';
|
|
$simplexml = simplexml_load_string($xml);
|
|
$reflector = new ReflectionObject($simplexml['name']);
|
|
$reflector->__toString();
|
|
?>
|
|
DONE
|
|
--EXPECT--
|
|
DONE
|