gpt4 book ai didi

php验证整数

转载 作者:IT王子 更新时间:2023-10-29 00:14:16 26 4
gpt4 key购买 nike

我想知道为什么这不起作用

    echo gettype($_GET['id']); //returns string
if(is_int($_GET['id']))
{
echo 'Integer';
}

如果数据是整数,如何验证从 GET/POST 传递的数据?

最佳答案

可以使用

$validatedValue = filter_input(INPUT_GET, 'id', FILTER_VALIDATE_INT);

http://php.net/filter_input及相关功能。

关于php验证整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4100022/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com