|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2010-04-09 16:58 UTC] andrey at niakhaichyk dot org
Description: ------------ XMLReader generates the error when tries to open files via stream_wrapper. Works for 5.2.12 Test script: --------------- http://niakhaichyk.org/xmlreader.bug.txt Expected result: ---------------- PHP_VERSION: 5.3.0 XML: <?xml version="1.0" encoding="UTF-8"?><root>Thank you</root> root= #text=Thank you root= Actual result: -------------- PHP_VERSION: 5.3.0 XML: <?xml version="1.0" encoding="UTF-8"?><root>Thank you</root> Warning: XMLReader::open() [xmlreader.open]: Unable to open source data in /var/www/vidunia/public/xmlreader.bug.php on line 12 Warning: XMLReader::read() [xmlreader.read]: Load Data before trying to read in /var/www/vidunia/public/xmlreader.bug.php on line 13 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 19:00:02 2025 UTC |
I faced same problem while using this code $objReader = XMLReader::open('reader.xml') but it was solved here $objReader = XMLReader; $objReader->open('reader.xml') best regards