blob: 6f3f51dc02efcd71e1a59b186d26a729a5b77cb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--TEST--
XMLReader: readString basic
--SKIPIF--
<?php if (!extension_loaded("xmlreader")) print "skip XMLReader extension required"; ?>
--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
|