ID: 34140
User updated by: gary at garycarr dot net
Reported By: gary at garycarr dot net
-Status: Feedback
+Status: Open
Bug Type: Unknown/Other Function
Operating System: Linux
PHP Version: 5.0.4
New Comment:
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");
}
}
}
}
Previous Comments:
------------------------------------------------------------------------
[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