简体   繁体   English

使用PHP 5.3+为“ WHERE IN”语句动态生成mysqli bind_param

[英]Dynamically generating mysqli bind_param for “WHERE IN” statements using php 5.3+

This question relies on an answer about using call_user_func_array to dynamically generate bind_param statements, and a user posting on the php manual about having to pass referenced items to bind_param statements. 这个问题依赖于有关使用call_user_func_array动态生成bind_param语句的答案 ,以及在php手册上发布的有关必须将引用的项目传递给bind_param语句的用户答案 However, a problem still remains: 但是,问题仍然存在:

PHP Warning: mysqli_stmt::bind_param(): Number of variables doesn't match number of parameters in prepared statement in PHP警告:mysqli_stmt :: bind_param():变量数量与准备好的语句中的参数数量不匹配

Here is the code: 这是代码:

$error_id_list = implode(',', array_fill(0, count($error_ids), '?'));
$type=""; for ($i=0; $i<count($error_ids); $i++){$type .= "i";}
$query = "SELECT `id`, `question`, `multi_1`, `multi_2`, `multi_3`, `multi_4` FROM `student_exam` WHERE `id` IN ('".$error_id_list."') ORDER BY RAND() LIMIT 0, 5";
$result = $mysqli->prepare($query);
if($result === FALSE)
    die($result->error);
array_unshift($error_ids, $type);
call_user_func_array(array($result, 'bind_param'), refValues($error_ids));
$result->execute();
$result->store_result();
$result->bind_result($id,$question,$multi1,$multi2,$multi3,$multi4);

while($result->fetch()){
    $output;
}
$result->free_result();

return $output;

Thanks! 谢谢!

The error was trivial, question marks in the SQL statement do not need to be surrounded by a quote (though several other answers on StackOverflow do use quotes). 该错误是微不足道的,SQL语句中的问号不需要用引号引起来(尽管StackOverflow上的其他几个答案都使用了引号)。

$error_id_list = implode(',', array_fill(0, count($error_ids), '?'));
$type=""; for ($i=0; $i<count($error_ids); $i++){$type .= "i";}
$query = "SELECT `id`, `question`, `multi_1`, `multi_2`, `multi_3`, `multi_4` FROM 
  `student_exam` WHERE `id` IN ('".$error_id_list."') ORDER BY RAND() LIMIT 0, 5";
                                ^^--- no quotes --^^
$result = $mysqli->prepare($query);
if($result === FALSE)
    die($result->error);
array_unshift($error_ids, $type);
call_user_func_array(array($result, 'bind_param'), refValues($error_ids));
$result->execute();
$result->store_result();
$result->bind_result($id,$question,$multi1,$multi2,$multi3,$multi4);

while($result->fetch()){
    $output;
}
$result->free_result();

return $output;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM