当前位置:Gxlcms > PHP教程 > zandframworkpdo预处理参数绑定长度不同获取不到值,但库里是有值的,为什么?

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

时间:2021-07-01 10:21:17 帮助过:19人阅读

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

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

$data = $stmt->fetchAll();

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

回复内容:

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

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

$data = $stmt->fetchAll();

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

人气教程排行