I have a big array containing lots of elements containing numerical data.
Example:
3200
34300
1499
12899
I want to convert these into:
32.00
343.00
14.99
128.99
How can I achieve this elegantly under PHP using no regex?
Thanks in advance.
|
|
|
|
|
|
|
See number_format if you want to fiddle with the thousands separator or something. See foreach if you want to modify the array values in place. |
||
|
|
|
Or, if you like anonymous functions and PHP 5.3:
$nums = array(1, 2, 3, 4);
array_walk($nums, function (&$val, $key) {
$val = number_format($val/100, 2);
});
print_r($nums);
Output:
Array
(
[0] => 1.00
[1] => 2.00
[2] => 3.00
[3] => 4.00
)
Still and all, the answer is the same: use |
|||
|
|
|
|
Using number_format.
|
||
|
|