Get all objects without loop in OOP MySQLi(在 OOP MySQLi 中获取所有没有循环的对象)
问题描述
这是我如何使用 MySQLi 获取一条记录:
This is how I get one record with MySQLi:
$result = $db->query("...");
$image = $result->fetch_object();
现在我需要获取评论并将其传递给视图.我现在正在这样做,但似乎不对:
Now I need to get the comments and pass it to the view. I'm doing this right now but it doesn't seem right:
$result = $db->query("...");
while ($row = $result->fetch_object())
$comments[] = $row;
我想知道是否有办法消除循环?像有 $image = $result->fetch_object(((s))),所以我的代码看起来像:
I'm wondering if there's a way to remove the loop? Something like have $image = $result->fetch_object(((s))), so my code would look like:
$result = $db->query("...");
$comments = $result->fetch_objects();
推荐答案
是的.mysqli_result 类提供了一个 fetch_all 方法来做到这一点.但是,该方法只会返回关联或数字数组(或混合数组),而不返回对象.
Yes. The mysqli_result class provides a fetch_all method to do this. However, that method will only return associative or numeric arrays (or a hybrid), not objects.
这篇关于在 OOP MySQLi 中获取所有没有循环的对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 OOP MySQLi 中获取所有没有循环的对象
基础教程推荐
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
- Web 服务器如何处理请求? 2021-01-01
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- php中的foreach复选框POST 2021-01-01
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- 将变量从树枝传递给 js 2022-01-01
- php中的PDF导出 2022-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01
