mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
For rationale, see #6787 Extensions migrated in part 4: * simplexml * skeleton * soap * spl * sqlite3 * sysvmsg * sysvsem * tidy - also removed a check for an ancient dependency version
25 lines
351 B
PHP
25 lines
351 B
PHP
--TEST--
|
|
Bug #46048 (SimpleXML top-level @attributes not part of iterator)
|
|
--EXTENSIONS--
|
|
simplexml
|
|
--FILE--
|
|
<?php
|
|
$xml = '
|
|
<data id="1">
|
|
<key>value</key>
|
|
</data>
|
|
';
|
|
$obj = simplexml_load_string($xml);
|
|
print_r(get_object_vars($obj));
|
|
?>
|
|
--EXPECT--
|
|
Array
|
|
(
|
|
[@attributes] => Array
|
|
(
|
|
[id] => 1
|
|
)
|
|
|
|
[key] => value
|
|
)
|