聪明的 if 语句和大数字

发布于 2024-11-14 18:13:41 字数 280 浏览 1 评论 0原文

此代码

{if 10111060108552250999929 == 10111060108552250999924} 
true1 
{/if} 
{if 10111060108552250999929 == 20111060108552250999924} 
true2 
{/if}

输出“true1”,但两个语句都不成立。

Smarty 是否有比较整数的最大大小?如果是的话,为什么看起来有点“模糊”呢?

希望我只是犯了一个愚蠢的错误。

This code

{if 10111060108552250999929 == 10111060108552250999924} 
true1 
{/if} 
{if 10111060108552250999929 == 20111060108552250999924} 
true2 
{/if}

outputs 'true1' but neither statement is true.

Does Smarty have a maximum size for comparing integers? If so, why does it appear to be a bit "fuzzy"?

Hopefully I've just made a stupid mistake.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

饮湿 2024-11-21 18:13:41

这是 PHP 整数类型溢出的问题。它根据操作系统位 (32/64) 的不同而变化。

请参阅:

如果 PHP 遇到超出整数类型范围的数字,它将被解释为浮点数。此外,导致数字超出整数类型范围的操作将返回浮点数。

http://www .php.net/manual/en/language.types.integer.php#language.types.integer.overflow

It's the problem with PHP's integer type overflow. It varies based on the OS bit (32/64).

Please see:

If PHP encounters a number beyond the bounds of the integer type, it will be interpreted as a float instead. Also, an operation which results in a number beyond the bounds of the integer type will return a float instead.

http://www.php.net/manual/en/language.types.integer.php#language.types.integer.overflow

一桥轻雨一伞开 2024-11-21 18:13:41

由于这些数字对于常规 int 类型来说太大,Smarty 会(根据 自动转换 PHP 确实)将它们与 float 进行比较,导致精度损失。

Since these numbers are too large for the regular int type, Smarty will (as per the automatic conversion PHP does) be comparing them as floats, resulting in loss of precision.

挽袖吟 2024-11-21 18:13:41

您应该考虑使用 BCMath 为 smarty 编写一个比较插件,因此大数字将是正确处理。

You should consider writing a comparsion plugin for smarty usin BCMath, therefore big numbers will be handled correctly.

天煞孤星 2024-11-21 18:13:41

我可能是错的,但你的第二个 if 语句总是错误的......因为这些数字不一样......

I might be wrong, but your second if statement is always false...as those numbers are not the same..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文