0

当我在输入中写入它们时,我想显示这样的数字 200,00。

就像我写 200 并自动将数字更改为 200,00

我怎样才能做到这一点?

<?
Value 1 <input type="text" name="value1">
Value 2 <input type="text" name="value2">
?>
<?
$total = $value1 + $value2;
?>

$total最后必须有 ,00 个数字

4

4 回答 4

1

尝试number_format函数

$total = "1279";
echo number_format($total, 2, ',', '.'); // 1.279,00

句法

number_format(number, decimal, decimal seperator, thousand seperator)
于 2013-09-05T08:58:24.943 回答
1

使用 number_format 在您的站点上回显变量。

见这里: http: //php.net/manual/en/function.number-format.php

number_format($total, 2, ',', '');
于 2013-09-05T08:58:32.103 回答
0

尝试使用一个名为number_format

echo number_format($total,2);
于 2013-09-05T08:59:21.647 回答
0
number_format( $total, 2, ',', '' );
于 2013-09-05T09:02:24.983 回答