|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-08-06 05:33 UTC] chregu@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 21 20:00:01 2025 UTC |
Description: ------------ Loading a malformed XML document with DOMDocument::load() fails to report any errors. Reproduce code: --------------- load.php: <?php $dom = new DOMDocument(); $dom->load('malformed.xml'); ?> malformed.xml: <tags>data</ags> Expected result: ---------------- I expected to see an error message. Actual result: -------------- Parser dies silently without reporting error.