在 OOP MySQLi 中获取所有没有循环的对象 [英] Get all objects without loop in OOP MySQLi

查看:9
本文介绍了在 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 中获取所有没有循环的对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆