php-src/ext/simplexml/tests/bug26976.phpt
Rob Richards a3e906515c add unicode support
update tests (binary string must be passed to simplexml_load_string)
2006-08-08 20:52:45 +00:00

29 lines
474 B
PHP

--TEST--
Bug #26976 (Can not access array elements using array indices)
--SKIPIF--
<?php if (!extension_loaded("simplexml")) print "skip simplexml extension is not loaded"; ?>
--FILE--
<?php
$root = simplexml_load_string(
b'<?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