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.