Mantis - Quercus
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
3127 | major | always | 12-05-08 23:11 | 12-10-08 09:14 | |
|
|||||
Reporter: | koreth | Platform: | |||
Assigned To: | nam | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | 3.2.1 | ||
Product Build: | Resolution: | fixed | |||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 4.0.0 | ||
|
|||||
Summary: | 0003127: array_chunk() uses keys instead of values in result | ||||
Description: |
<?php $x = array_chunk(array(1 => 12345, 2 => 34567, 3 => 56789), 3); print_r($x); Vanilla PHP prints Array ( [0] => Array ( [0] => 12345 [1] => 34567 [2] => 56789 ) ) Quercus prints Array ( [0] => Array ( [0] => 1 [1] => 2 [2] => 3 ) ) |
||||
Steps To Reproduce: | |||||
Additional Information: | |||||
Relationships | |||||
Attached Files: |
Notes | |||||
|
|||||
|
|
||||
|
|||||
|
|