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

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

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

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

        <tfoot id='we2f7'></tfoot>

        php获取数据库中数据的实现方法

        时间:2024-05-12

            <tbody id='b2Uuj'></tbody>

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

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

            • <legend id='b2Uuj'><style id='b2Uuj'><dir id='b2Uuj'><q id='b2Uuj'></q></dir></style></legend>
                  <tfoot id='b2Uuj'></tfoot>

                  php获取数据库中数据的实现方法的代码
                  <?php 
                  header("Content-type:text/html;charset=utf-8");//字符编码设置 
                  $servername = "localhost"; 
                  $username = "root"; 
                  $password = "root"; 
                  $dbname = "web"; 
                   
                  // 创建连接 
                  $con =mysqli_connect($servername, $username, $password, $dbname); 
                   
                  // 检测连接 
                   
                    
                  $sql = "SELECT * FROM users"; 
                  $result = mysqli_query($con,$sql); 
                  if (!$result) {
                    printf("Error: %s\n", mysqli_error($con));
                    exit();
                  }
                   
                  $jarr = array();
                  while ($rows=mysqli_fetch_array($result,MYSQL_ASSOC)){
                    $count=count($rows);//不能在循环语句中,由于每次删除 row数组长度都减小 
                    for($i=0;$i<$count;$i++){ 
                      unset($rows[$i]);//删除冗余数据 
                    }
                    array_push($jarr,$rows);
                  }
                  echo $str=json_encode($jarr);//将数组进行json编码
                  ?>

                  这是获取完之后转成json格式,以上这篇php获取数据库中数据的实现方法就是小编分享给大家的全部内容了,希望能给大家带来帮助。

                  上一篇:php读取数据库里的数据以JSON格式返回数据 下一篇:没有了

                  相关文章

                    <legend id='OfxTp'><style id='OfxTp'><dir id='OfxTp'><q id='OfxTp'></q></dir></style></legend>
                  1. <small id='OfxTp'></small><noframes id='OfxTp'>

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