|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-01-14 23:01 UTC] rrichards@php.net
[2005-01-14 23:05 UTC] cpuidle at gmx dot de
[2005-01-14 23:28 UTC] rrichards@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 18:00:02 2025 UTC |
Description: ------------ Loading simplexml document, then trying to print the xml file results in error: Fatal error: Class 'classSXE' not found Zend forum suggested to make sure that xml document is properly created as correct class ($xml = new classSXE();), this isn't possible either (another error). Reproduce code: --------------- $xml = simplexml_load_string("file.xml"); echo $xml->asXML(); Expected result: ---------------- XML output, instead: Fatal error: Class 'classSXE' not found