gpt4 book ai didi

php - 查找受影响或检索的行数

转载 作者:行者123 更新时间:2023-11-29 12:17:03 25 4
gpt4 key购买 nike

我在检索受影响的行数或从数据库中检索的行数时遇到问题。当我检查 $myslqi->affected_rows 的值时,它有非常意外的值。

      echo $_GET['User_Id'];
$ClientIP=get_client_ip_server();
$query= "select IP from iptable where IP=?";
$stmt=$mysqli->stmt_init();
$stmt->prepare($query);
$stmt->bind_param('s', $IP);
$IP=$ClientIP; // Must be retrieved dynamically
$stmt->execute();
$stmt->bind_result($ip);
$stmt->fetch();
echo $stmt->affected_rows;

在此代码中,受影响的行显示-1,但是数据库中有值。.如何检查我的情况下的行数

最佳答案

affected_rows 返回受上次 INSERT、UPDATE、REPLACE 或 DELETE 查询影响的行数。

为了获取结果中的行数,您需要获取mysql_result对象。试试这个:

$stmt->get_result()->num_rows

关于php - 查找受影响或检索的行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29636164/

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