round($price,2)
哪个输出269但是当我有一个像269.50这样的值它输出269.5并且我想在最后得到零这是定价产品
number_format
$price = number_format(round($price,2),2);
这也将逗号添加为千位分隔符.