mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
30 lines
485 B
PHP
30 lines
485 B
PHP
--TEST--
|
|
Bug #42139 (XMLReader option constants are broken using XML())
|
|
--EXTENSIONS--
|
|
xmlreader
|
|
--FILE--
|
|
<?php
|
|
|
|
$xml = <<<XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<!DOCTYPE root [
|
|
<!ELEMENT root ANY>
|
|
<!ENTITY x "y">
|
|
]>
|
|
<root>&x;</root>
|
|
XML;
|
|
|
|
$reader = new XMLReader;
|
|
$reader->XML( $xml, NULL, LIBXML_NOENT);
|
|
while ( $reader->read() ) {
|
|
echo "{$reader->nodeType}, {$reader->name}, {$reader->value}\n";
|
|
}
|
|
$reader->close();
|
|
|
|
?>
|
|
--EXPECT--
|
|
10, root,
|
|
1, root,
|
|
3, #text, y
|
|
15, root,
|