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

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

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

        mysql_field_name 到新的 mysqli

        时间:2023-09-24
        <i id='P23og'><tr id='P23og'><dt id='P23og'><q id='P23og'><span id='P23og'><b id='P23og'><form id='P23og'><ins id='P23og'></ins><ul id='P23og'></ul><sub id='P23og'></sub></form><legend id='P23og'></legend><bdo id='P23og'><pre id='P23og'><center id='P23og'></center></pre></bdo></b><th id='P23og'></th></span></q></dt></tr></i><div id='P23og'><tfoot id='P23og'></tfoot><dl id='P23og'><fieldset id='P23og'></fieldset></dl></div>

        <tfoot id='P23og'></tfoot>
          <tbody id='P23og'></tbody>
        1. <small id='P23og'></small><noframes id='P23og'>

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

              • <legend id='P23og'><style id='P23og'><dir id='P23og'><q id='P23og'></q></dir></style></legend>

                  本文介绍了mysql_field_name 到新的 mysqli的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我有办法获取表列的名称.它工作正常,但现在我想更新到新的 mysqli ?(我尝试了 mysqli_fetch_field 但我不知道如何应用到这种情况下,我不确定它是否是 wright 选项)

                  I have a way to get the name of the columns of a table. It works fine but now I want to update to the new mysqli ? (I tried the mysqli_fetch_field but I don't know how to apply to this case and I am not sure if it is the wright option)

                  如何用 mysqli 做同样的事情?:

                  How to do the same with mysqli ? :

                  $sql = "SELECT * from myTable";
                  $result = mysql_query($sql,$con);
                  $id = mysql_field_name($result, 0);
                  $a = mysql_field_name($result, 1);
                  
                  echo $id;
                  echo $a;
                  

                  推荐答案

                  我不确定是否有更好的方法来做到这一点,但我检查了这是否可以仅获取列的名称并且是新的mysqli:

                  I'm not sure if there is a better way to do that, but I checked that this works to get just the name of the columns and is the new mysqli :

                  $result = mysqli_query($con, 'SELECT * FROM myTable');
                  while ($property = mysqli_fetch_field($result)) {
                      echo $property->name;
                  }
                  

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

                  上一篇:mysqli_query 和 mysqli_real_query 的区别 下一篇:MySQLi 未找到 dockerized php

                  相关文章

                  最新文章

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

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

                      <tfoot id='hzHJm'></tfoot>

                      • <bdo id='hzHJm'></bdo><ul id='hzHJm'></ul>