I would like to format 0.45 as 45%.
I know I can just do something like FLOOR($x*100).'%'
, but wonder if there is a better way (better is defined as more standard and not necessarily faster).
One thought is http://php.net/manual/en/class.numberformatter.php. Is this a better way? Has anyone used it and can you show an example? Thanks