英文:
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']
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论