我在各种网站上看了一个多小时,但我无法解决我的问题。
所以这是有效的代码:
$animes = array();
$q = $this->_db->query('SELECT id, nom, nom_id FROM animes WHERE nom LIKE "%code%"');
while ($data = $q->fetch(PDO::FETCH_ASSOC))
{
$animes[] = new Anime($data);
}
return $animes;
这是一个不起作用的人:
$animes = array();
$q = $this->_db->prepare('SELECT id, nom, nom_id FROM animes WHERE nom LIKE :n');
$q->bindValue(':n',"%code%",PDO::PARAM_STR);
while ($data = $q->fetch(PDO::FETCH_ASSOC))
{
$animes[] = new Anime($data);
}
return $animes;`
我在此示例中使用了%code%
,但它将与$info
一起使用,这是我检索的$_POST
值。
我该如何解决?
谢谢。
答案 0 :(得分:6)
你没有execute()
。
绑定后你需要执行然后获取:
$q->bindValue(':n',"%code%",PDO::PARAM_STR);
$q->execute();
while ($data = $q->fetch(PDO::FETCH_ASSOC))
你可以用php变量这样绑定:
$q->bindValue(':n','%'.$var.'%',PDO::PARAM_STR);