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 中获取所有没有循环的对象


- PHP Count 布尔数组中真值的数量 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Laravel 仓库 2022-01-01