>백엔드 개발 >PHP 튜토리얼 >这个是pdo的bug吗?

这个是pdo的bug吗?

WBOY
WBOY원래의
2016-06-06 20:23:371324검색

<code>$user='test';
$pass='123456';
$dbh = new PDO('mysql:host=127.0.0.1;dbname=test', $user, $pass);
$sth = $dbh->prepare("SELECT * FROM user WHERE id IN (?) ORDER BY id ASC");
$sth->execute(['456089015, 456089016, 456089017, 456089018, 456089019, 456089020, 456089021, 456089022, 456089023, 456089024, 456089025, 678689287']);
$result = $sth->fetchAll();
print_r($result);
</code>

其中只有678689287是存在的,结果返回为空;如果把678689287放在第一位,就有返回。

是不是个bug?

回复内容:

<code>$user='test';
$pass='123456';
$dbh = new PDO('mysql:host=127.0.0.1;dbname=test', $user, $pass);
$sth = $dbh->prepare("SELECT * FROM user WHERE id IN (?) ORDER BY id ASC");
$sth->execute(['456089015, 456089016, 456089017, 456089018, 456089019, 456089020, 456089021, 456089022, 456089023, 456089024, 456089025, 678689287']);
$result = $sth->fetchAll();
print_r($result);
</code>

其中只有678689287是存在的,结果返回为空;如果把678689287放在第一位,就有返回。

是不是个bug?

用预处理的的select...in语句,你得生成与查询数量相同的占位符

<code class="php">$queryParams = [456089015, 456089016, 456089017, 456089018, 456089019, 456089020, 456089021, 456089022, 456089023, 456089024, 456089025, 678689287];
$markers = str_repeat('?,', count($queryParams) - 1) . '?';
$st = $dbh->prepare("SELECT * FROM user WHERE id IN (${markers}) ORDER BY id ASC");
$st->execute($queryParams);
$result = $st->fetchAll();</code>

pdo不支持这种数组绑定

和我以前犯的错误一样,in后面的数值范围,有多少个数值,就来多少个问号,一个问号不行。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.