I'm using this
$formatter = new NumberFormatter('en_US', NumberFormatter::PERCENT);
print $formatter->format(.45);
Result = 45%
How to change to 45.00% (show 2 decimal place)
Thank you
I'm using this
$formatter = new NumberFormatter('en_US', NumberFormatter::PERCENT);
print $formatter->format(.45);
Result = 45%
How to change to 45.00% (show 2 decimal place)
Thank you