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

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

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

    3. Mysqli fetch_assoc 与 fetch_array

      时间:2023-07-31
      1. <small id='gCjHF'></small><noframes id='gCjHF'>

          <legend id='gCjHF'><style id='gCjHF'><dir id='gCjHF'><q id='gCjHF'></q></dir></style></legend>

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

            <bdo id='gCjHF'></bdo><ul id='gCjHF'></ul>
              <tfoot id='gCjHF'></tfoot>

                <tbody id='gCjHF'></tbody>
                本文介绍了Mysqli fetch_assoc 与 fetch_array的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                当我从表中返回一行时,收集我通常使用的结果,例如:

                When I'm returning one row from a table, to gather the results I usually use e.g.:

                $info = $result->fetch_assoc(); 
                

                那和有什么区别:

                $info = $result->fetch_array();
                

                当只返回一行时,是否有理由使用一个而不是另一个,或者只是个人喜好?

                Is there a reason to use one over the other when returning only one row, or is it just personal preference?

                推荐答案

                一切都与性能有关

                fetch_array() 返回一个包含数字键和关联字符串(列名) 的数组,因此在这里您可以使用 $row['column_name']$row[0]

                fetch_array() returns one array with both numeric keys, and associative strings (column names), so here you can either use $row['column_name'] or $row[0]

                其中 fetch_assoc() 将返回字符串索引键数组,而没有数字数组,因此您将无法选择使用像 $row[0] 这样的数字键.

                Where as fetch_assoc() will return string indexed key array and no numeric array so you won't have an option here of using numeric keys like $row[0].

                所以后者在性能上比 fetch_array() 更好,显然使用命名索引比数字索引好得多.

                So the latter one is better in performance compared to fetch_array() and obviously using named indexes is far better compared to numeric indexes.

                这篇关于Mysqli fetch_assoc 与 fetch_array的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:mysqli + xdebug 断点后关闭语句导致很多警告 下一篇:Mysqli get_result 替代方案

                相关文章

                最新文章

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

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

                <legend id='zgCvE'><style id='zgCvE'><dir id='zgCvE'><q id='zgCvE'></q></dir></style></legend>

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