在Laravel 10中如何限制数字值的长度?

huangapple go评论85阅读模式
英文:

how to limit the length of numeric value in laravel 10?

问题

这是验证 tinyint(4) 类型数值的正确方式吗?

以下是我目前正在使用的命令:

['required', 'numeric', 'max:4']
英文:

is this the correct way to validate a numeric value where the field is tinyint(4)?

here's the command I'm using right now

['required', 'numeric', 'max:4']

答案1

得分: 3

根据Laravel文档,您可以使用max_digits

['required', 'numeric', 'max_digits:4']

英文:

According to the Laravel documnnetation you can use max_digits:

['required', 'numeric', 'max_digits:4']

huangapple
  • 本文由 发表于 2023年8月9日 15:07:49
  • 转载请务必保留本文链接:https://go.coder-hub.com/76865379-2.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定