php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #51235 getElementsByTagName always return an empty list
Submitted: 2010-03-08 13:27 UTC Modified: 2013-02-18 00:34 UTC
Votes:2
Avg. Score:5.0 ± 0.0
Reproduced:2 of 2 (100.0%)
Same Version:2 (100.0%)
Same OS:1 (50.0%)
From: marsala dot marco at fastwebnet dot it Assigned:
Status: No Feedback Package: DOM XML related
PHP Version: 5.3.2 OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: marsala dot marco at fastwebnet dot it
New email:
PHP Version: OS:

 

 [2010-03-08 13:27 UTC] marsala dot marco at fastwebnet dot it
Description:
------------
$document = new DOMDocument()->load(...);
$document->getElementsByTagName(<root element name>) works (returns list with one element).
getElementsByTagName(<non root element name>) always return an empty list. Examples on notes and on the web (some examples claimed to be working are prior the 5.3.2) are all  not working.

Tested on LAMP server PHP 5.2.8 AND on XAMPPLite WAMP PHP 5.3.1, both not working.

Test script:
---------------
$doc = new DOMDocument();
$doc->load('__xml/faq.xml');
$faqs = $doc->getElementsByTagName("faq");
echo $faqs->length; // always 0



__xml/faq.xml is:

<?xml version="1.0" encoding="iso-8859-1"?>
<faqs>
	<faq>
		<domanda>domanda1</domanda>
		<risposta>risposta1</risposta>
	</faq>
	<faq>
		<domanda>domanda2</domanda>
		<risposta>risposta2</risposta>
	</faq>
	<faq>
		<domanda>domanda3</domanda>
		<risposta>risposta3</risposta>
	</faq>
</faqs>


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2010-03-08 14:01 UTC] rrichards@php.net
-Status: Open +Status: Feedback
 [2010-03-08 14:01 UTC] rrichards@php.net
You sure no errors or warnings being thrown that aren't being shown? The example 
works fine for me using 5.3.2 and latests libxml2.
 [2010-10-26 19:48 UTC] shad dot cut dot this at shad dot net dot pl
Hello, in my script getElementsByTagName() return a empty list where a XML/HTML string used the char '-' int code 45. O zonk :/ 

Fix: 
before DOMDocument->loadHTML($html) I'm using a str_replace('-','__BAD_CHAR__',$html) and result I replace again to primary version.
 [2013-02-18 00:34 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat May 11 03:01:29 2024 UTC