<?PHP echo round($price,2); ?>
而$的价格可能是1.0000
我想要1.00,但我只得到1
有任何想法吗
<?PHP printf("%.2f",$price); ?>
这个语法的文档最好在sprintf()页面进行描述.
sprintf()