php PDOStatement fetchAll 第二次

发布于 2024-10-20 11:28:11 字数 253 浏览 3 评论 0原文

我不太明白 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

放飞的风筝 2024-10-27 11:28:11

只需将第一次调用 fetchAll() 的结果存储到 PHP 变量中即可。你有什么理由不能这样做吗?

$results = $PDOS->fetchAll();

然后您可以根据需要使用 $results ,而无需进一步增加数据库的负担。

Just store the result the first call to fetchAll() into a PHP variable. Any reason you can't do that?

$results = $PDOS->fetchAll();

Then you can use $results as much as you need to without taxing your database any further.

为人所爱 2024-10-27 11:28:11

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文