检查 PHP 中的值是否仅包含数字的最快方法?
我可以用双 for 循环以痛苦的方式做到这一点,但肯定有一个内置方法吗?将用于验证电话号码条目。
I could do this the painful way with a double for loop, but surely there's an inbuilt method? Will be used to validate phone number entries.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ctype_digit()
ctype_digit()
检查整个字符串是否只是数字。
如果您还想匹配空格:
Checks to see if the whole string is just digits.
If you want to match spaces as well: