php mysql 在全局中获取数组

发布于 2024-10-01 02:26:22 字数 197 浏览 4 评论 0原文

我得到了这段代码

     while ($aResult = mysql_fetch_array($result))
  {
   $sResult[$aResult[userID]] = $aResult;
  }

,但我想知道是否有更快的方法将 $aresult 中的所有内容放入 sresult 全局中?

i got this code

     while ($aResult = mysql_fetch_array($result))
  {
   $sResult[$aResult[userID]] = $aResult;
  }

but i want to know is there a faster way to put everything from $aresult in the sresult global?

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

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

发布评论

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

评论(1

黯然#的苍凉 2024-10-08 02:26:22

这取决于“更快”的定义。如果你想要最小的 CPU 使用率,你可能应该使用上面的函数,或者正如 Col. 所说,尽量避免获取全部并使用指针。

如果您想要更少的编码时间,请考虑使用包装器,例如 PEAR DB。有了它,您只需编写 $res = $db->getAll( $SQL );

http://pear.php.net/manual /en/package.database.db.db-common.getall.php

It depends on the definition of "faster". If you want minimum CPU usage, you propably should use the function above, or as Col. said, try to avoid fetching all and use pointers.

If you want less coding time, consider using a a wrapper such as PEAR DB. With it you can just write $res = $db->getAll( $SQL );

http://pear.php.net/manual/en/package.database.db.db-common.getall.php

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