ID: 34140 Updated by: [EMAIL PROTECTED] Reported By: gary at garycarr dot net -Status: Open +Status: Feedback Bug Type: Unknown/Other Function Operating System: Linux PHP Version: 5.0.4 New Comment:
Ok, marking as waiting for feedback until you're ready to provide a real reproduce case. Previous Comments: ------------------------------------------------------------------------ [2005-08-15 22:55:03] gary at garycarr dot net ok thx Tony, we will recompile our 5.0.4 release and try it again. The exact code that we got the error with is a little more involved than this code, but I gave you a small snippet that is very similar, we will recompile and run this script and see what our results are. I will update ASAP. ------------------------------------------------------------------------ [2005-08-15 22:39:03] [EMAIL PROTECTED] This code works fine with: 5.0.3 5.0.4 5.1-dev 6.0-dev (I get "id = 1<br /> name = about<br />" in all cases) Are you sure you've posted the right code? ------------------------------------------------------------------------ [2005-08-15 22:34:03] gary at garycarr dot net ok here is the complete test code : $xml='<?xml version="1.0" encoding = "UTF-8"?><menus name="Toolbar"><menu id="1" name="about"><text>Learn more about our company</text><icon>about.gif</icon></menu></menus>'; $domdoc = new domDocument; $domdoc->loadxml($xml); $xpath = new domXPath($domdoc); $query = '//menus/menu'; $nodelist = $xpath->query($query); if (isset($nodelist)) { foreach ($nodelist as $node){ if ($node->hasAttributes()){ foreach ($node->attributes as $attribute) { echo nl2br("$attribute->name = $attribute->value\n"); } } } } ------------------------------------------------------------------------ [2005-08-15 22:10:40] [EMAIL PROTECTED] #28444 was fixed exactly in *5.0.4*. Please provide a short but complete reproduce script that doesn't require any external resources. It would be good if the script would fit in max 20 lines. ------------------------------------------------------------------------ [2005-08-15 22:07:19] gary at garycarr dot net Description: ------------ bug #28444 is back again, it was fixed in 5.0.3, but now is back again in 5.0.4. This is a duplicate bug, but it has been fixed and now is problem again, resubmitting for that reason. Reproduce code: --------------- $query = '//menus'; $nodelist = $xpath->query($query); if (isset($nodelist)) { foreach ($nodelist as $node){ if ($node->hasAttributes()){ foreach ($node->attributes as $attribute) { echo nl2br(print_r($attribute,true)); } } } } Expected result: ---------------- the details of each $attribute; Actual result: -------------- PHP Error "Cannot access undefined property for object with overloaded property access" on foreach line... ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=34140&edit=1