如何在 mysql php 中立即获取所有可用行

发布于 2024-12-17 04:52:48 字数 145 浏览 1 评论 0原文

如果我想获取多个 ROWS 而不像这样执行 while 循环:

while ($data = mysql_fetch_array($select)) {}

我怎样才能在 mysql 和 php 中做到这一点?

If I wanted to fetch multiple ROWS without doing the while loop like this:

while ($data = mysql_fetch_array($select)) {}

how can I do that in mysql and php?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

离线来电— 2024-12-24 04:52:48

mysql_fetch_array() 旨在从结果集中获取单行,因此没有合理的方法不使用 while。将 mysqli 与 fetch_all 一起使用或习惯 while :)

您的评论:

$_SESSION["whatever"]=array();
while($data = mysql_fetch_array($select)) {
   array_push($_SESSION["whatever"], $data);
}

mysql_fetch_array() is intended to fetch a single row from a resultset, so there is no reasonable way not using a while. Use mysqli with fetch_all or get used to while :)

Your comment:

$_SESSION["whatever"]=array();
while($data = mysql_fetch_array($select)) {
   array_push($_SESSION["whatever"], $data);
}
童话里做英雄 2024-12-24 04:52:48

使用 mysqli 你有一个 fetch_all功能。从手册中:

mysqli_result::fetch_all -- mysqli_fetch_all — 获取所有结果行
作为关联数组、数值数组或两者兼而有之

With mysqli you have a fetch_all function. From the manual:

mysqli_result::fetch_all -- mysqli_fetch_all — Fetches all result rows
as an associative array, a numeric array, or both

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