zand framwork pdo 预处理 参数绑定长度不同 获取不到值,但库里是有值的,为什么?


​sql:select .... where .... district=:district
代码如下:


 ​$stmt = $this->db->query(
   ​    ​$res['searchstr'],  //sql 语句
   ​    ​$whereis  //绑定参数的数组
​);

$data = $stmt->fetchAll();

如果 district 为北京有值,为 内蒙古自治区 则没有值,但库中是有值的。

预处理 php zend-framework2

npc568 9 years, 6 months ago

Your Answer