验证 zend 框架中超过 PHP_INT_MAX 值 (2147483647) 的 int
有什么解决方法可以验证超过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从技术上讲不是,因为如果超出范围,它就不是 PHP 整数。
但是您可以将
Zend_Validate_Digits
与Zend_Validate_Between
一起使用,以确保传递的值是特定范围内的数字。Technically no, because it's not a PHP Integer if it's out of bounds.
But you can use
Zend_Validate_Digits
withZend_Validate_Between
to make sure the passed value is a number in a specific range though.