变量数量与准备语句中的参数数量不匹配

问题描述 投票:0回答:3

我的代码没有发现任何问题,但我的代码中仍然出现此错误,这根本没有意义。

警告:mysqli_stmt::bind_param():变量数量与第 131 行准备好的语句中的参数数量不匹配

这是我的完整代码:

    if($stmt = $db_conx->prepare("SELECT id, product_name FROM yt ORDER by id") ) {
  //die( $db_conx->error );

$product_list = "";
$stmt->bind_param("is", $id, $product_name);
if ( ! $stmt->execute() ) {
  die( $stmt->error );
}
$stmt->bind_result($id, $product_name);
$stmt->store_result();

while($stmt->fetch()) {
    $value[] = array('id'=>$id, 'product_name'=>$product_name);
    $product_list .= "<li class='mix ".$product_name."' data-name='".$product_name."'><a href='../product_images/" . $id . "Image1.jpg'>
                                        <img src='../product_images/" . $id . "Image1.jpg'></a>
                                        <h4>".$product_name."</h4>
                                        <br>

                                    </li>
                                    <div style='width:120px;'><a href='edit.php?edit=$id'>Edit this product</a></div>
<br>
<div style='width:120px;'><a href='products.php?delete=$id'>Delete this product</a></div>";

$files = glob('../cache/*'); // get all file names
foreach($files as $file){ // iterate files
  if(is_file($file))
    unlink($file); // delete file
}
    }
}
mysqli_stmt_close($stmt);

这就是 131 路:

$stmt->bind_param("is", $id, $product_name);

我有什么遗漏的吗?

php mysqli
3个回答
3
投票

您尝试将 2 个参数绑定到没有任何参数的查询:

$stmt = $db_conx->prepare("SELECT id, product_name FROM yt ORDER by id");
$stmt->bind_param("is", $id, $product_name);

只有在为参数定义占位符时才能绑定参数,如下所示:

$stmt = $db_conx->prepare("SELECT id, product_name FROM where id = ? or  product_name = ?");
$stmt->bind_param("is", $id, $product_name);

?
表示您可以将参数绑定到的占位符。


1
投票

我遇到了同样的错误,但我的问题只是,我使用了厚厚的,我有一段时间没有注意到这一点。 Ofc,在这种情况下我的?是一个字符串而不是变量...,我希望它对某人有帮助,所以使用这个:

选择 * WHERE langCode = ?

而不是这个:

选择 * WHERE langCode = '?'


-1
投票

您绑定的参数“is”在您的sql语句中不存在 编辑:你没有任何“?”占位符

msqli_stmt::bind_param

© www.soinside.com 2019 - 2024. All rights reserved.