Mantis - Quercus
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
3146 | minor | always | 12-11-08 00:29 | 12-11-08 09:18 | |
|
|||||
Reporter: | koreth | Platform: | |||
Assigned To: | ferg | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | 4.0.0 | ||
Product Build: | Resolution: | fixed | |||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 4.0.0 | ||
|
|||||
Summary: | 0003146: array_shift() removes wrong element | ||||
Description: |
<?php $foo = array(1,2,3,4); array_shift($foo); print_r($foo); Regular PHP prints Array ( [0] => 2 [1] => 3 [2] => 4 ). Quercus prints Array ( [0] => 1 [1] => 3 [2] => 4 ) -- it has removed the second element from the array here, not the first. |
||||
Steps To Reproduce: | |||||
Additional Information: | |||||
Relationships | |||||
Attached Files: |
Notes | |||||
|
|||||
|
|