|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-10-17 13:32 UTC] cmb@php.net
-Status: Open
+Status: Verified
[2016-10-17 13:32 UTC] cmb@php.net
[2020-08-31 16:00 UTC] cmb@php.net
-Status: Verified
+Status: Duplicate
-Assigned To:
+Assigned To: cmb
[2020-08-31 16:00 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 12:00:02 2025 UTC |
Description: ------------ When entity loading is disabled using libxml_disable_entity_loader(), XMLReader refuses to load XML data using its open() method. Test script: --------------- <?php libxml_disable_entity_loader(); $reader = new XMLReader(); $reader->open('php://stdin'); Expected result: ---------------- The URL provided to open() is successfully opened. Actual result: -------------- A warning is generated and the URL is not opened.