mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
16 lines
296 B
PHP
16 lines
296 B
PHP
--TEST--
|
|
XMLReader: readString basic
|
|
--EXTENSIONS--
|
|
xmlreader
|
|
--FILE--
|
|
<?php
|
|
|
|
$xml = '<?xml version="1.0" encoding="UTF-8"?><books><book>Book1</book><book>Book2</book></books>';
|
|
|
|
$reader = new XMLReader();
|
|
$reader->xml($xml);
|
|
$reader->read();
|
|
echo $reader->readString();
|
|
?>
|
|
--EXPECT--
|
|
Book1Book2
|