调用Date :: diff后,计算浮动的问题是什么?

时间:2011-07-27 07:57:24

标签: php datetime floating-point datediff

使用Date :: diff。

计算浮点数后,我得到了奇怪的结果
$oDate = new DateTime($sStart);
$oDiff = $oDate->diff(new DateTime($sEnd));
echo 3 * 6.1;

输出 B.3

$oDate = new DateTime($sStart);
echo 3 * 6.1;
$oDiff = $oDate->diff(new DateTime($sEnd));

输出 18.3

我错了什么?

0 个答案:

没有答案