-1

大家好,我已将 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'] ? > 
4

1 回答 1

0

使用了这行代码:

$price   = (isset($row['price']) && $row['price']!='')?number_format($row['price'], 2, '.', ','):'null';
echo $row['CurrencyType'].' '.$price.' '.$row['Square Meter'];
于 2013-10-05T06:24:01.317 回答