PHP 整数类型在函数调用中丢失

发布于 2024-12-03 04:36:53 字数 229 浏览 0 评论 0原文

我有一些代码可以提取数据库主键并通过调用函数来迭代它们。

当我从数据库获取密钥并执行 is_int($key) 时,它返回 true。

然后我调用一个函数: thisfunction($key)

在调用函数中,我这样做是为了您可以传入 $key,并且该函数加载该键的行,或者您可以将该行作为对象传递。在被调用函数的开头,它检查 $key 是否为_int。当我用整数值调用它时,它返回 false。

I have some code that pulls database primary keys and iterates through them by calling a function.

When I get the key from the database and do a is_int($key) it returns true.

I then call a function: thisfunction($key)

In the calling function, I made it so that you could pass in the $key and that function loads the row for that key or you can pass the row as an object. At the beginning of the called function, it checks to see if $key is_int. It is returning false when I am calling it with an integer value.

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

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

发布评论

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

评论(3

紫南 2024-12-10 04:36:53

从数据库中获取的所有内容都是字符串。

这意味着,即使您的数据库的列包含 INT,您也会得到如下结果:

id, name, age
array("43", "Rok", "19");

Everything you get from database is string.

That means, even if you have database with INTs for columns, you are going to get them like:

id, name, age
array("43", "Rok", "19");
剧终人散尽 2024-12-10 04:36:53

由于从数据库获取的所有内容都是字符串类型,因此您可以尝试使用 is_numeric() 而不是 is_int()。

Since everything you fetch from the database is a type string, you could try using is_numeric() instead of is_int().

和我恋爱吧 2024-12-10 04:36:53

也许尝试 ctype_digit() 函数。

Perhaps try the ctype_digit() function.

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