ID:               42289
 User updated by:  cpriest at warpmail dot net
-Summary:          relative paths incorrectly returning no match
 Reported By:      cpriest at warpmail dot net
 Status:           Open
 Bug Type:         SimpleXML related
 Operating System: Windows & Linux
 PHP Version:      5.2.4RC1
 New Comment:

Changing incorrect summary text.


Previous Comments:
------------------------------------------------------------------------

[2007-08-14 01:12:55] cpriest at warpmail dot net

Description:
------------
Non-absolute paths using ->xpath() do not match appropriately.  With
the  given example, changing the xpath to '/postresponse/status/@accept'
correctly returns "no"

Reproduce code:
---------------
<?
        $ResponseBody = '<?xml version="1.0"
encoding="UTF-8"?><postresponse><status
accept="no">INVALID</status></postresponse>';
        
        $objXML = new SimpleXMLElement($ResponseBody);
        
        $tMatches = $objXML->xpath('postresponse/status/@accept');
        print_r((string)$tMatches[0]);
?>

Expected result:
----------------
"no"

Actual result:
--------------
xpath() returns no results


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


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

Reply via email to