验证 zend 框架中超过 PHP_INT_MAX 值 (2147483647) 的 int

发布于 2024-09-16 11:58:08 字数 331 浏览 6 评论 0原文

有什么解决方法可以验证超过 PHP_INT_MAX (32 位为 2147483647)值的 int 字段吗?我在 Zend 框架中使用的代码是:

'int_input' => array(
        'allowEmpty' => true,
        'Zend_Validate_Int',
        array('Zend_Validate_Between',0,4000000000),
        'message' => 'Int must be between 1 and 4,000,000,000.'
    )

谢谢。

Any workaround to validate an int field which exceeds PHP_INT_MAX (2147483647 on 32 bit) value? The code I am using in Zend framework is:

'int_input' => array(
        'allowEmpty' => true,
        'Zend_Validate_Int',
        array('Zend_Validate_Between',0,4000000000),
        'message' => 'Int must be between 1 and 4,000,000,000.'
    )

Thanks.

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

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

发布评论

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

评论(1

倾城花音 2024-09-23 11:58:08

从技术上讲不是,因为如果超出范围,它就不是 PHP 整数。

但是您可以将 Zend_Validate_DigitsZend_Validate_Between 一起使用,以确保传递的值是特定范围内的数字。

Technically no, because it's not a PHP Integer if it's out of bounds.

But you can use Zend_Validate_Digits with Zend_Validate_Between to make sure the passed value is a number in a specific range though.

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