ID: 41550 Updated by: [EMAIL PROTECTED] Reported By: info at adaniels dot nl -Status: Assigned +Status: Bogus Bug Type: DOM XML related Operating System: Linux PHP Version: 5CVS-2007-05-31 (CVS) Assigned To: rrichards New Comment:
Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Due to the volume of reports we can not explain in detail here why your report is not a bug. The support channels will be able to provide an explanation for you. Thank you for your interest in PHP. This appears to be a libxml2 regression bug introduced somewhere around the .20 release. Will be addressed there. Previous Comments: ------------------------------------------------------------------------ [2007-05-31 15:17:02] info at adaniels dot nl Description: ------------ Note that this is about the DOM extension, not DOM XML. After using schemaValidate on a DOMDocument, the ID attributes should be marked, so getElementById() should work. This used to work in PHP 5.1.x, but is broken in current versions. Reproduce code: --------------- <?php $xml = <<<XML <root> <item id="abc" /> <item id="def" /> <item id="xyz" /> </root> XML; $schema = <<<XML <?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" > <xs:element name="root"> <xs:complexType> <xs:sequence> <xs:element name="item" type="item" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> </xs:element> <xs:complexType name="item"> <xs:attribute name="id" use="required" type="xs:ID"/> </xs:complexType> </xs:schema> XML; $dom = new DOMDocument(); $dom->loadXML($xml); if (!$dom->schemaValidateSource($schema)) trigger_error("Validation failed", E_USER_ERROR); $node = $dom->getElementById('def'); echo $node ? 'Node found' : 'Where is it?'; ?> Expected result: ---------------- Node found Actual result: -------------- Where is it? ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=41550&edit=1
