sniper          Tue Jan 20 22:17:08 2004 EDT

  Added files:                 
    /php-src/ext/simplexml/tests        bug26976.phpt 
  Log:
  test for bug #26976
  

http://cvs.php.net/co.php/php-src/ext/simplexml/tests/bug26976.phpt?r=1.1&p=1
Index: php-src/ext/simplexml/tests/bug26976.phpt
+++ php-src/ext/simplexml/tests/bug26976.phpt
--TEST--
Bug #26976 (Can not get array elements)
--SKIPIF--
<?php if (!extension_loaded("simplexml")) print "skip simplexml extension is not 
loaded"; ?>
--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

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to