gpt4 book ai didi

php - 如何在 mysqli 查询和结果绑定(bind)后替换变量的值?

转载 作者:行者123 更新时间:2023-12-04 06:37:02 24 4
gpt4 key购买 nike

出于某种原因,我无法让它工作,但基本上我试图在 mysqli 查询之后更改存储在变量中的内容,但无论出于何种原因,它都不起作用,这是我的代码:

$q = $DBH->prepare("SELECT text, position FROM persons WHERE id = ?");
$q->bind_param("i", $id);
$q->execute();
$q->bind_result($text,$position);
if($position <= 5){
$text = "position is too low";
}
echo $text;

最佳答案

我得到了它。
您已将结果绑定(bind)到变量,但从未获取它们。
因此,您只需要在使用结果之前调用 $q->fetch()。

关于php - 如何在 mysqli 查询和结果绑定(bind)后替换变量的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4755791/

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