php PDOStatement fetchAll 第二次
我不太明白 PDOStatement 的意义,因为:
$PDO = new PDO();
$PDOS = $PDO->query($sql);
var_dump($PDOS->fetchAll()); //will return data
var_dump($PDOS->fetchAll()); //empty
是否需要传递一个参数,以便第二次 fetchAll 返回数据,但无需再次执行 SQL?
I do not really understand the point of PDOStatement since:
$PDO = new PDO();
$PDOS = $PDO->query($sql);
var_dump($PDOS->fetchAll()); //will return data
var_dump($PDOS->fetchAll()); //empty
Is there a param that needs to be passed so that 2nd time fetchAll returns data, but without executing the SQL again?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将第一次调用 fetchAll() 的结果存储到 PHP 变量中即可。你有什么理由不能这样做吗?
然后您可以根据需要使用
$results
,而无需进一步增加数据库的负担。Just store the result the first call to
fetchAll()
into a PHP variable. Any reason you can't do that?Then you can use
$results
as much as you need to without taxing your database any further.PDOStatement
有一个迭代器。PDOStatement::fetch()
将迭代行集。当调用 fetchAll() 时,迭代器位于最后一行。
该迭代器仅沿 1 个方向移动。返回的唯一方法是再次执行查询。这是数据库的本质,PHP 不应该将整个行集保留在内存中。
The
PDOStatement
has an iterator.PDOStatement::fetch()
will iterate over the rowset.When calling
fetchAll()
the iterator is at the last row.This iterator moves only in 1 direction. The only method to go back is to execute the query again. This is the nature of the database and PHP should not keep the entire rowset in memory.