mirror of
https://github.com/php/php-src.git
synced 2025-01-25 05:04:20 +08:00
9e29f17493
# After long discussions we came to a conclusion on how to make this # extension consistent in itself. # Thanks to Rob for all the work
48 lines
587 B
PHP
Executable File
48 lines
587 B
PHP
Executable File
--TEST--
|
|
SimpleXML and echo/print
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('simplexml')) print 'skip';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$xml =<<<EOF
|
|
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
|
<foo>
|
|
<bar>bar</bar>
|
|
<baz>baz1</baz>
|
|
<baz>baz2</baz>
|
|
</foo>
|
|
EOF;
|
|
|
|
$sxe = simplexml_load_string($xml);
|
|
|
|
echo "===BAR===\n";
|
|
echo $sxe->bar;
|
|
echo "\n";
|
|
|
|
echo "===BAZ===\n";
|
|
echo $sxe->baz;
|
|
echo "\n";
|
|
|
|
echo "===BAZ0===\n";
|
|
echo $sxe->baz[0];
|
|
echo "\n";
|
|
|
|
echo "===BAZ1===\n";
|
|
print $sxe->baz[1];
|
|
echo "\n";
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===BAR===
|
|
bar
|
|
===BAZ===
|
|
baz1
|
|
===BAZ0===
|
|
baz1
|
|
===BAZ1===
|
|
baz2
|
|
===DONE===
|