使用 PHP 验证 $_POST 的包含。那必须是数字

发布于 2024-12-06 02:07:05 字数 159 浏览 0 评论 0原文

我想验证 $_POST 的包含,它必须是数字。我如何使用 PHP 检查 $_POST 的包含内容?

例如(我想要的结果):

1876 //true
2.34 // false
erfka // false
1djs33 // false

I'd like to validate $_POST's contain, that must be number. How can i check out $_POST's contain with PHP?

for example (what i want as the result):

1876 //true
2.34 // false
erfka // false
1djs33 // false

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

这样的小城市 2024-12-13 02:07:05

ctype_digit 是你的朋友。它检查变量中是否仅包含数字,而不是句点或任何其他内容。 ctype_digit 甚至不允许负数,而只允许数字

它实际上还检查是否包含一个数字。使用 ctype_digit 将空字符串评估为 false

ctype_digit is your friend. It checks that only digits are contained in the variable, not periods or anything other. ctype_digit doesn't even allow negative numbers, but just digits.

It actually also checks that there is a number contained. The empty string is evaluated to false with ctype_digit.

撕心裂肺的伤痛 2024-12-13 02:07:05

使用ctype_digit会更好!

It will be better to use ctype_digit!

似狗非友 2024-12-13 02:07:05

尝试使用 PHP is_numeric 函数

Try using PHP is_numeric function

冷…雨湿花 2024-12-13 02:07:05

尝试使用此代码 -

if(strpos($_POST['number'],'.') === false && is_numeric($_POST['number']))
echo 'Its a numeriac int value';
else
echo 'not a numeric value';

Try with this code -

if(strpos($_POST['number'],'.') === false && is_numeric($_POST['number']))
echo 'Its a numeriac int value';
else
echo 'not a numeric value';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文