繁体   English   中英

bind_param()的Mysqli错误:类型定义字符串中的元素数量与绑定变量的数量不匹配

[英]Mysqli error with bind_param(): Number of elements in type definition string doesn't match number of bind variables

我尽力解决此错误,但没有成功。 我正在尝试使用准备好的语句动态构建选择查询:

我有这个代码

<?php
$gm = $_GET['gm']; 
$ct = $_GET['ct']; 

$query = 'SELECT * FROM fchar';

$cond = array();
$params = array();
$type = array();

if (!empty($gm)) {
$cond[] = "gm = ?";
$params[] = $gm;
$type[] = "i";
}

if (!empty($ct)) {
$cond[] = "ct = ?";
$params[] = $ct;
$type[] = "s";
}

if (count($cond)) {
$query .= ' WHERE ' . implode(' AND ', $cond);
}

if (count($params)) {
$paramok = implode(', ', $params);

}
if (count($type)) {
$typeok = implode($type);
}

$stmt = $connection->prepare($query);
$stmt->bind_param(''.$typeok.'',$paramok);

$stmt->execute();


if (!$stmt->execute()) {
echo "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
}
while ($stmt->fetch()) {

}
}
?>

我有这个错误:

警告:mysqli_stmt :: bind_param():类型定义字符串中的元素数量与第42行的C:\\ xampp \\ htdocs \\ cebusingles \\ search.php中的绑定变量数量不匹配

但是,当我回应类型和参数时,我得到了:

echo "<br><br>Types : ".$typeok."<br>Param: ".$paramok."<br><br>Query:   ".$query."<br><br>";
// gives :
// Types : is
// Param: 1, USA
// Query: SELECT * FROM fchar WHERE gm = ? AND ct = ?

所以我有2种类型:is和2 param:1,美国。

我不明白为什么它说类型的数量与参数的数量不匹配...任何线索? 谢谢 !

$stmt->bind_param(''.$typeok.'',$paramok);

缺少要在上插入哪种类型的变量? 地方

$stmt->bind_param('ss', ''.$typeok.'', $paramok);

您可以在此处阅读使用数字,字符串等时应使用哪些字符:
http://php.net/manual/en/mysqli-stmt.bind-param.php

类型

一个包含一个或多个字符的字符串,这些字符指定相应绑定变量的类型:

暂无
暂无

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

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