PHP 整数类型在函数调用中丢失
我有一些代码可以提取数据库主键并通过调用函数来迭代它们。
当我从数据库获取密钥并执行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从数据库中获取的所有内容都是字符串。
这意味着,即使您的数据库的列包含 INT,您也会得到如下结果:
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:
由于从数据库获取的所有内容都是字符串类型,因此您可以尝试使用 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().
也许尝试 ctype_digit() 函数。
Perhaps try the ctype_digit() function.