gpt4 book ai didi

php - 使用 mysqli prepare 时如何查看 MYSQL 执行状态?

转载 作者:行者123 更新时间:2023-11-29 02:23:37 26 4
gpt4 key购买 nike

我有这个:

$mysqli = new mysqli( '127.0.0.1', 'root', 'P', '_db' );


{
$xkey=$key2+1;
$stmt = $mysqli->prepare("UPDATE blablabla mysql
$stmt->bind_param('ii', $xkey, $strings);
$stmt->execute();
}
}

我需要根据失败与否回应不同的事情。我试过了

if(!$stmt){
then
//do
}else{
//do
}

但是没用。

最佳答案

http://php.net/manual/en/mysqli-stmt.execute.php

Returns TRUE on success or FALSE on failure.

$status = $stmt->execute();

if ($status === true) {
// good
}
else {
// bad
}

关于php - 使用 mysqli prepare 时如何查看 MYSQL 执行状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27214739/

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