|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-16 07:32 UTC] derick@php.net
[2002-06-16 07:36 UTC] flying at dom dot natm dot ru
[2002-06-18 05:55 UTC] derick@php.net
[2002-06-18 09:36 UTC] flying at dom dot natm dot ru
[2002-08-14 12:22 UTC] chregu@php.net
[2002-08-14 12:24 UTC] flying at dom dot natm dot ru
[2002-09-14 06:51 UTC] rrichards at digarc dot com
[2002-10-07 09:23 UTC] anton at fedosin dot ru
[2002-10-20 21:44 UTC] sterling@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 16:00:01 2025 UTC |
DOMXML module can't load XML documents, containing SYSTEM DTD. Here is example: test.xml ======== <?xml version="1.0"?> <!DOCTYPE root SYSTEM "ext.dtd"> <root>&test;</root> ext.dtd ======= <!ENTITY test "***TEST***"> Loading this document as: $xml = xmldoc(join('',file('test.xml'))); Throws warning about undefined entity &test; Loading this document as: $xml = xmldoc(join('',file('test.xml')),DOMXML_LOAD_COMPLETE_ATTRS); Throws warning: Warning: failed to load external entity "ext.dtd"