php - Money format in Laravel - 100 to $1.00
Solution:
Use number_format.
Example:
function pretty_print($number) {
return number_format($number / 100, 2);
}
echo pretty_print(100);
echo pretty_print(149);
echo pretty_print(100034);
Result:
1.00
1.49
1,000.34
Answer
Solution:
Try this:
$digit = 123456;
echo number_format($digit/100,2);
Output:
1234.56
Source