Edit report at https://bugs.php.net/bug.php?id=51235&edit=1

 ID:          51235
 Updated by:  php-bugs@lists.php.net
 Reported by: marsala dot marco at fastwebnet dot it
 Summary:     getElementsByTagName always return an empty list
-Status:      Feedback
+Status:      No Feedback
 Type:        Bug
 Package:     DOM XML related
 PHP Version: 5.3.2

 New Comment:

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.


Previous Comments:
------------------------------------------------------------------------
[2010-10-26 19:48:08] 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.

------------------------------------------------------------------------
[2010-03-08 14:01:53] rricha...@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-03-08 13:27:47] 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>



------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=51235&edit=1

Reply via email to