大家好我已经将num_format用于我的一个十进制字段(十进制15,2),每当我
我正在输入值,所以它可以,但是当我想让列空为止时,它会给出
0.00的结果我不想要我使用null并删除了num_format函数
有效,但我也想要我的字段的num_format。
here is the code:
<?php echo $row['CurrencyType'].' '. number_format($row['price'], 2, '.', ',').' '.$row['Square Meter'] ? >
答案 0 :(得分:0)
使用了这行代码:
$price = (isset($row['price']) && $row['price']!='')?number_format($row['price'], 2, '.', ','):'null';
echo $row['CurrencyType'].' '.$price.' '.$row['Square Meter'];