标签: php decimal percentage
我有一个在线测试结果页面,我的代码是:
echo ($r1['om']/$r['maxmarks']*100)." %";
结果显示:61.764705882353%
如何设置61.76%?
答案 0 :(得分:0)
使用number_format()
echo number_format($r1['om']/$r['maxmarks']*100,2)