1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/simplexml/tests/bug26976.phpt
2021-10-05 09:51:58 +01:00

29 lines
393 B
PHP

--TEST--
Bug #26976 (Cannot access array elements using array indices)
--EXTENSIONS--
simplexml
--FILE--
<?php
$root = simplexml_load_string(
'<?xml version="1.0"?>
<root>
<child>a</child>
<child>b</child>
<child>c</child>
<child>d</child>
</root>
');
echo $root->child[0], "\n";
echo $root->child[1], "\n";
echo $root->child[2], "\n";
echo $root->child[3], "\n";
?>
--EXPECT--
a
b
c
d