Mantis - Quercus
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
2057 | minor | always | 10-10-07 17:24 | 10-10-07 21:48 | |
|
|||||
Reporter: | koreth | Platform: | |||
Assigned To: | nam | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | 3.1.3 | ||
Product Build: | Resolution: | fixed | |||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 3.1.4 | ||
|
|||||
Summary: | 0002057: array_fill_keys() not implemented | ||||
Description: |
Our code calls array_fill_keys() in a few places; it's undefined in Quercus. Not urgent as I can work around it with a PHP-based implementation, but a native one would be more efficient. http://us3.php.net/manual/en/function.array-fill-keys.php [^] PHP implementation: function array_fill_keys($keys, $value) { $a = array(); foreach ($keys as $key) { $a[$key] = $value; } return $a; } |
||||
Steps To Reproduce: | |||||
Additional Information: | |||||
Relationships | |||||
Attached Files: |
Notes | |||||
|
|||||
|
|