我正在尝试在我的PHP项目中搜索数据库中的29个字段。我正在使用mysqli连接到我的数据库。当我不尝试使用bind_param()时,我的查询工作正常,但在处理错误时失败:
PHP Warning: mysqli_stmt::bind_param() [<a href='mysqli-stmt.bind-param'>mysqli-stmt.bind-param</a>]: Number of variables doesn't match number of parameters in prepared statement in /search.php on line 6
我的代码如下:
<?php
$find = $_POST['find'];
if (strcasecmp($_POST['in'], 'users') == 0) {
$query = $db->prepare("SELECT u.id, u.group_id, u.username, u.email, m.credits, m.first_name, m.last_name, m.address1, m.address2, m.city, m.state, m.country, m.zipcode, m.about, m.account_status, m.vacation_status FROM kf_users u JOIN kf_usermeta m ON u.id = m.id WHERE u.id LIKE '%?%' OR u.group_id LIKE '%?%' OR u.ip_address LIKE '%?%' OR u.username LIKE '%?%' OR u.password LIKE '%?%' OR u.salt LIKE '%?%' OR u.email LIKE '%?%' OR u.activation_code LIKE '%?%' OR u.forgotten_password_code LIKE '%?%' OR u.remember_code LIKE '%?%' OR u.created_on LIKE '%?%' OR u.last_login LIKE '%?%' OR u.active LIKE '%?%' OR u.FUID LIKE '%?%' OR m.id LIKE '%?%' OR m.credits LIKE '%?%' OR m.rating LIKE '%?%' OR m.user_id LIKE '%?%' OR m.first_name LIKE '%?%' OR m.last_name LIKE '%?%' OR m.address1 LIKE '%?%' OR m.address2 LIKE '%?%' OR m.city LIKE '%?%' OR m.state LIKE '%?%' OR m.country LIKE '%?%' OR m.zipcode LIKE '%?%' OR m.about LIKE '%?%' OR m.account_status LIKE '%?%' OR m.vacation_status LIKE '%?%'");
$query->bind_param('sssssssssssssssssssssssssssss',$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find,$find);
$query->execute();
$query->bind_result($id, $group, $username, $email, $credits, $first_name, $last_name, $address1, $address2, $city, $state, $country, $zipcode, $about, $account_status, $vacation_status);
while ($query->fetch()) {
$result['id'] = $id;
$result['group'] = $group;
$result['username'] = $username;
$result['email'] = $email;
$result['credits'] = $credits;
$result['first_name'] = $first_name;
$result['last_name'] = $last_name;
$result['address1'] = $address1;
$result['address2'] = $address2;
$result['city'] = $city;
$result['state'] = $state;
$result['country'] = $country;
$result['zipcode'] = $zipcode;
$result['about'] = $about;
$result['account_status'] = $account_status;
$result['vacation_status'] = $vacation_status;
$output[] = $result;
}
$query->close();
}
?>
同样,如果我注释掉我的bind_param()行,并将我的查询中的?
替换为我的搜索词,则会返回数据,因为我得到错误而没有数据。任何人对这里可能出现的问题都有任何想法吗?
答案 0 :(得分:3)
您有29个?
是您的查询,s
列表中包含29个bind_param
数据类型条目,要绑定29个$find
变量,但是,您将?
占位符封装在引号中 - 它们不再是占位符,它们只是字符串。因此,MySQL看到要绑定的零参数,并且您正在尝试绑定29。
要使用预准备语句执行简单的LIKE
子句,您可以执行以下操作:
$query = $db->prepare("SELECT * FROM some_table WHERE field LIKE ?");
$query->bind_param('s',$find);
在您的情况下,您希望匹配%$find%
。你可以这样做:
$query = $db->prepare("SELECT * FROM some_table WHERE field LIKE ?");
$query->bind_param('s', '%'.$find.'%');
或者甚至更复杂,您可以在每个参数上使用CONCAT()
:
$query = $db->prepare("SELECT * FROM some_table WHERE field LIKE CONCAT('%', ?, '%')");
$query->bind_param('s',$find);
使用现有代码和第一种方法 ('%'.$find.'%')
进行复制+粘贴:
$query = $db->prepare("SELECT u.id, u.group_id, u.username, u.email, m.credits, m.first_name, m.last_name, m.address1, m.address2, m.city, m.state, m.country, m.zipcode, m.about, m.account_status, m.vacation_status FROM kf_users u JOIN kf_usermeta m ON u.id = m.id WHERE u.id LIKE ? OR u.group_id LIKE ? OR u.ip_address LIKE ? OR u.username LIKE ? OR u.password LIKE ? OR u.salt LIKE ? OR u.email LIKE ? OR u.activation_code LIKE ? OR u.forgotten_password_code LIKE ? OR u.remember_code LIKE ? OR u.created_on LIKE ? OR u.last_login LIKE ? OR u.active LIKE ? OR u.FUID LIKE ? OR m.id LIKE ? OR m.credits LIKE ? OR m.rating LIKE ? OR m.user_id LIKE ? OR m.first_name LIKE ? OR m.last_name LIKE ? OR m.address1 LIKE ? OR m.address2 LIKE ? OR m.city LIKE ? OR m.state LIKE ? OR m.country LIKE ? OR m.zipcode LIKE ? OR m.about LIKE ? OR m.account_status LIKE ? OR m.vacation_status LIKE ?");
$query->bind_param('sssssssssssssssssssssssssssss','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%','%'.$find.'%');
答案 1 :(得分:2)
绑定参数与字符串插值不同;你不能只用?
替换你的变量,也不应该引用它们。占位符代表整个价值。
相反,您应该像这样准备您的查询
$query = $db->prepare('SELECT ... WHERE u.id LIKE ? OR u.group_id LIKE ? ... ');
然后将您的值包装在通配符
中$find = '%' . $find . '%';
我非常强烈建议使用PDO而不是MySQLi。有了它,您可以使用命名占位符,例如
$stmt = $pdo->prepare('SELECT ... WHERE u.id LIKE :term OR u.group_id LIKE :term ... ');
$find = '%' . $find . '%';
$stmt->bindParam('term', $find);
$stmt->execute();
这样,您可以在整个查询中重复使用相同的占位符
答案 2 :(得分:-1)
如果这不起作用,那么你可能正在使用mariadb而不是mysql。这个问题是两者之间的细微差别。
我对我的代码所做的就是改变它:
$search_text=$db->real_escape_string($search_text);
$stmt=$db->prepare("SELECT * FROM rentals WHERE search_text LIKE '%{$search_text}%'");
//TODO Put the bind_param back when it works someday; plus take out the escape.
//$stmt=$db->prepare("SELECT * FROM rentals WHERE search_text LIKE ?");
//$stmt->bind_param('s', '%'.$search_text.'%');
$stmt->execute();
原油,但暂时是一个有效的解决方案。