检查 PHP 中的值是否仅包含数字的最快方法?

发布于 2024-11-02 08:38:52 字数 55 浏览 1 评论 0原文

我可以用双 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 技术交流群。

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

发布评论

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

评论(2

无妨# 2024-11-09 08:38:52
preg_match('/^\d+$/', $string);

检查整个字符串是否只是数字。

如果您还想匹配空格:

preg_match('/^[0-9 ]+$/', $string);
preg_match('/^\d+$/', $string);

Checks to see if the whole string is just digits.

If you want to match spaces as well:

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