vote up 0 vote down star

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.

flag

3 Answers

vote up 3 vote down check
$new_array=array();
foreach($old_array as $value)
{
   $new_array[]=number_format(($value/100),2);
}

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.

link|flag
Works, thank you. – google Oct 8 at 16:48
vote up 2 vote down

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 number_format().

link|flag
vote up 0 vote down

Using number_format.

for($i=0;$i<count($array);$i++)
{
    $array[$i] = number_format($array[$i]/100,2);
    //if you need them as numbers
    $array[$i] = (float) number_format($array[$i]/100,2);
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.