#42437 [NEW]: Results from xpath() cannot be deleted

2007-08-27 Thread guenther dot stadler at gmx dot net
From: guenther dot stadler at gmx dot net
Operating system: 
PHP version:  5.2.3
PHP Bug Type: SimpleXML related
Bug description:  Results from xpath() cannot be deleted

Description:

Elements of the array returned by xpath() cannot be deleted.
I can change those elements, but deleting is impossible.

How can I delete a node returned by xpath()? Is there a way to find out
where the node I found is within the whole xml tree?

Thanks, Günther.

Reproduce code:
---


 Movie One
 Movie Two

XML;

$xml = new SimpleXMLElement($xmlstr);

$movs = $xml->xpath('//movie');

// Trying to delete the reference returned by xpath
unset($movs[0]);

// $movs[0] = NULL; doesn't work either

// No changes
echo $xml->asXML();

?>


Expected result:



 Movie Two


Actual result:
--


 Movie One
 Movie Two


-- 
Edit bug report at http://bugs.php.net/?id=42437&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=42437&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=42437&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=42437&r=trysnapshot60
Fixed in CVS: http://bugs.php.net/fix.php?id=42437&r=fixedcvs
Fixed in release: 
http://bugs.php.net/fix.php?id=42437&r=alreadyfixed
Need backtrace:   http://bugs.php.net/fix.php?id=42437&r=needtrace
Need Reproduce Script:http://bugs.php.net/fix.php?id=42437&r=needscript
Try newer version:http://bugs.php.net/fix.php?id=42437&r=oldversion
Not developer issue:  http://bugs.php.net/fix.php?id=42437&r=support
Expected behavior:http://bugs.php.net/fix.php?id=42437&r=notwrong
Not enough info:  
http://bugs.php.net/fix.php?id=42437&r=notenoughinfo
Submitted twice:  
http://bugs.php.net/fix.php?id=42437&r=submittedtwice
register_globals: http://bugs.php.net/fix.php?id=42437&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=42437&r=php3
Daylight Savings: http://bugs.php.net/fix.php?id=42437&r=dst
IIS Stability:http://bugs.php.net/fix.php?id=42437&r=isapi
Install GNU Sed:  http://bugs.php.net/fix.php?id=42437&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=42437&r=float
No Zend Extensions:   http://bugs.php.net/fix.php?id=42437&r=nozend
MySQL Configuration Error:http://bugs.php.net/fix.php?id=42437&r=mysqlcfg


#42348 [NEW]: xPath beginning with "//" searches whole document

2007-08-20 Thread guenther dot stadler at gmx dot net
From: guenther dot stadler at gmx dot net
Operating system: 
PHP version:  5.2.3
PHP Bug Type: SimpleXML related
Bug description:  xPath beginning with "//" searches whole document

Description:

When using // at the beginning of an xpath-query, not only the children of
the current SimpleXMLElement are searched (as stated in the manual), but
the whole XML document instead.
(So, actually, it might only be a documentation issue...)

If this is expected behaviour, how is one supposed to search all 
elements, no whether where they are - but only under the current item
(whatever it might be)?

Reproduce code:
---


 
  
   1
   2
  
 
 
  
   3
   4
  
 

XML;

$xml = new SimpleXMLElement($xmlstr);

$foo_list = $xml->xpath('//foo');
$foo = $foo_list[0]; // now we have the node with id="foo_1"

$bar_list = $foo->xpath('//bar');
foreach($bar_list as $this_bar)
echo "$this_bar ";
?>

Expected result:

1 2 

Actual result:
--
1 2 3 4 

-- 
Edit bug report at http://bugs.php.net/?id=42348&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=42348&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=42348&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=42348&r=trysnapshot60
Fixed in CVS: http://bugs.php.net/fix.php?id=42348&r=fixedcvs
Fixed in release: 
http://bugs.php.net/fix.php?id=42348&r=alreadyfixed
Need backtrace:   http://bugs.php.net/fix.php?id=42348&r=needtrace
Need Reproduce Script:http://bugs.php.net/fix.php?id=42348&r=needscript
Try newer version:http://bugs.php.net/fix.php?id=42348&r=oldversion
Not developer issue:  http://bugs.php.net/fix.php?id=42348&r=support
Expected behavior:http://bugs.php.net/fix.php?id=42348&r=notwrong
Not enough info:  
http://bugs.php.net/fix.php?id=42348&r=notenoughinfo
Submitted twice:  
http://bugs.php.net/fix.php?id=42348&r=submittedtwice
register_globals: http://bugs.php.net/fix.php?id=42348&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=42348&r=php3
Daylight Savings: http://bugs.php.net/fix.php?id=42348&r=dst
IIS Stability:http://bugs.php.net/fix.php?id=42348&r=isapi
Install GNU Sed:  http://bugs.php.net/fix.php?id=42348&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=42348&r=float
No Zend Extensions:   http://bugs.php.net/fix.php?id=42348&r=nozend
MySQL Configuration Error:http://bugs.php.net/fix.php?id=42348&r=mysqlcfg