MySQL 整数字段在 PHP 中作为字符串返回

2022-01-14 00:00:00 types int php mysql gettype

我在 MySQL 数据库中有一个表字段:

I have a table field in a MySQL database:

userid INT(11)

所以我用这个查询将它调用到我的页面:

So I am calling it to my page with this query:

"SELECT userid FROM DB WHERE name='john'"

然后处理我做的结果:

$row=$result->fetch_assoc();

$id=$row['userid'];

现在如果我这样做:

echo gettype($id);

我得到一个字符串.这不应该是一个整数吗?

推荐答案

当您使用 PHP 从 MySQL 数据库中选择数据时,数据类型将始终转换为字符串.您可以使用以下代码将其转换回整数:

When you select data from a MySQL database using PHP the datatype will always be converted to a string. You can convert it back to an integer using the following code:

$id = (int) $row['userid'];

或者通过使用函数intval():

$id = intval($row['userid']);

相关文章