5

我正在尝试使用 PDO 准备语句编写关键字搜索。理想情况下,我想使用 LIKE 运算符在字段值内搜索子字符串。这是我的代码:

$statement = $this->db->prepare("select * from whatever where title like ? or author like ?");
$statement->execute(array("%$titleKeyword%","%$authorKeyword%"));
$rows = $statement->fetchAll(PDO::FETCH_ASSOC);

不幸的是,当我尝试这个时,$rows 总是空的。但是,如果我将 SQL 复制到 phpMyAdmin 中,并用 '%keyword%' 替换每个 ? 符号,它工作正常(当使用的关键字存在时我得到结果)。

我还尝试了以下代码:

$statement = $this->db->prepare("select * from whatever where title like :titleKeyword or author like :authorKeyword");
$statement->bindValue(":titleKeyword",  '%'.$titleKeyword.'%',  PDO::PARAM_STR);
$statement->bindValue(":authorKeyword", '%'.$authorKeyword.'%', PDO::PARAM_STR);
$statement->execute();
$rows = $statement->fetchAll(PDO::FETCH_ASSOC);

我在另一个问题中读到,您应该在绑定参数时包含 %,而不是在 SQL 本身(预先准备好的语句)中,但这不起作用。

我可以诉诸将关键字直接插入 SQL(在进行一些清理之后),但我想坚持使用准备好的语句。任何帮助将不胜感激。

4

2 回答 2

3

这实际上对我有用:

$stmt = $pdo->prepare("select * from t where c like ?");
$stmt->execute(array("70%"));
print_r($stmt->fetchAll());

您使用什么 PHP 版本?

于 2012-10-17T08:12:45.683 回答
1

感谢 Steffen 和 Terry 的帮助。

我最终通过切换到 bindParam() 而不是 bindValue() 自己解决了这个问题。我不知道为什么我不能用 bindValue() 来做,但现在我太累了,不在乎。

于 2012-10-17T08:45:40.313 回答