mirror of
https://github.com/php/php-src.git
synced 2024-12-12 03:15:29 +08:00
38 lines
702 B
PHP
38 lines
702 B
PHP
--TEST--
|
|
XMLReader: libxml2 XML Reader, parser property set/get
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("xmlreader")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
/* $Id$ */
|
|
|
|
$xmlstring = '<?xml version="1.0" encoding="UTF-8"?>
|
|
<books></books>';
|
|
|
|
$reader = new XMLReader();
|
|
|
|
$reader->XML($xmlstring);
|
|
|
|
|
|
$a = $reader->setParserProperty(XMLReader::LOADDTD, false);
|
|
$b = $reader->getParserProperty(XMLReader::LOADDTD);
|
|
|
|
if (!$a && !$b) {
|
|
echo "ok\n";
|
|
}
|
|
|
|
$a = $reader->setParserProperty(XMLReader::SUBST_ENTITIES, true);
|
|
$b = $reader->getParserProperty(XMLReader::SUBST_ENTITIES);
|
|
|
|
if ($a && $b) {
|
|
echo "ok\n";
|
|
}
|
|
// Only go through
|
|
while ($reader->read());
|
|
$reader->close();
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
ok
|
|
===DONE===
|