<tfoot id='cuMt0'></tfoot>

    <bdo id='cuMt0'></bdo><ul id='cuMt0'></ul>

<small id='cuMt0'></small><noframes id='cuMt0'>

  • <legend id='cuMt0'><style id='cuMt0'><dir id='cuMt0'><q id='cuMt0'></q></dir></style></legend>
      <i id='cuMt0'><tr id='cuMt0'><dt id='cuMt0'><q id='cuMt0'><span id='cuMt0'><b id='cuMt0'><form id='cuMt0'><ins id='cuMt0'></ins><ul id='cuMt0'></ul><sub id='cuMt0'></sub></form><legend id='cuMt0'></legend><bdo id='cuMt0'><pre id='cuMt0'><center id='cuMt0'></center></pre></bdo></b><th id='cuMt0'></th></span></q></dt></tr></i><div id='cuMt0'><tfoot id='cuMt0'></tfoot><dl id='cuMt0'><fieldset id='cuMt0'></fieldset></dl></div>

      1. 在 OOP MySQLi 中获取所有没有循环的对象

        时间:2023-07-28

              <bdo id='TECTU'></bdo><ul id='TECTU'></ul>

              1. <legend id='TECTU'><style id='TECTU'><dir id='TECTU'><q id='TECTU'></q></dir></style></legend>
                <i id='TECTU'><tr id='TECTU'><dt id='TECTU'><q id='TECTU'><span id='TECTU'><b id='TECTU'><form id='TECTU'><ins id='TECTU'></ins><ul id='TECTU'></ul><sub id='TECTU'></sub></form><legend id='TECTU'></legend><bdo id='TECTU'><pre id='TECTU'><center id='TECTU'></center></pre></bdo></b><th id='TECTU'></th></span></q></dt></tr></i><div id='TECTU'><tfoot id='TECTU'></tfoot><dl id='TECTU'><fieldset id='TECTU'></fieldset></dl></div>
              2. <tfoot id='TECTU'></tfoot>

                1. <small id='TECTU'></small><noframes id='TECTU'>

                    <tbody id='TECTU'></tbody>

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

                  上一篇:致命错误:无法通过引用传递参数 1 下一篇:PHP mysql_stmt::fetch() 导致 PHP 致命错误内存耗尽

                  相关文章

                  最新文章

                2. <small id='hRNV1'></small><noframes id='hRNV1'>

                3. <legend id='hRNV1'><style id='hRNV1'><dir id='hRNV1'><q id='hRNV1'></q></dir></style></legend>
                  <tfoot id='hRNV1'></tfoot>

                4. <i id='hRNV1'><tr id='hRNV1'><dt id='hRNV1'><q id='hRNV1'><span id='hRNV1'><b id='hRNV1'><form id='hRNV1'><ins id='hRNV1'></ins><ul id='hRNV1'></ul><sub id='hRNV1'></sub></form><legend id='hRNV1'></legend><bdo id='hRNV1'><pre id='hRNV1'><center id='hRNV1'></center></pre></bdo></b><th id='hRNV1'></th></span></q></dt></tr></i><div id='hRNV1'><tfoot id='hRNV1'></tfoot><dl id='hRNV1'><fieldset id='hRNV1'></fieldset></dl></div>

                        <bdo id='hRNV1'></bdo><ul id='hRNV1'></ul>