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

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

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

        PHP读取数据库记录转换为JSON的代码

        为了提供API接口,我们常常在读取数据库后,将数据转换为数组,通过json_encode转为JSON,即可满足使用需要。现将代码粘帖如下: 读取一条记录,转为数组并输出JSON include("../../db/conn.php");//数据库连接;echo "pre";//数据库读取后,直接转换为数组
      2. <legend id='Lh5G8'><style id='Lh5G8'><dir id='Lh5G8'><q id='Lh5G8'></q></dir></style></legend>

        • <bdo id='Lh5G8'></bdo><ul id='Lh5G8'></ul>
          <tfoot id='Lh5G8'></tfoot>

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

                <tbody id='Lh5G8'></tbody>
              • <small id='Lh5G8'></small><noframes id='Lh5G8'>

                  为了提供API接口,我们常常在读取数据库后,将数据转换为数组,通过json_encode转为JSON,即可满足使用需要。现将代码粘帖如下:

                  1. 读取一条记录,转为数组并输出JSON
                  include("../../db/conn.php");//数据库连接;
                  echo "<pre>";
                  //数据库读取后,直接转换为数组显示;
                  $sql = "select salesid,fromstore,fromsaler,salestime,salenum,totalprice from midea_sales WHERE salesid=44";
                  $results = mysqli_query($con, $sql);
                  $rows = mysqli_fetch_assoc($results);
                  foreach ($rows as $key => $v) {
                  	$res[$key] = $v;
                  }
                  echo json_encode($res);
                  
                  1. 读取N条记录,转为多维数组并输出JSON(第一种写法)
                  //数据库读取后,直接转换为数组显示;
                  $sql = "select salesid,fromstore,fromsaler,salestime,salenum,totalprice from midea_sales";
                  $results = mysqli_query($con, $sql);
                  
                  $data = array();//初始化数组;
                  
                  class Alteration
                  {
                  	public $fromstore;
                  	public $fromsaler;
                  	public $salenum;
                  	public $totalprice;
                  }
                  
                  while ($row = mysqli_fetch_assoc($results)) {
                  	$alter = new Alteration();//实例化对象;
                  	$alter->fromstore = $row['fromstore'];
                  	$alter->fromsaler = $row['fromsaler'];
                  	$alter->salenum = $row['salenum'];
                  	$alter->totalprice = $row['totalprice'];
                  	$data[] = $alter;
                  }
                  echo json_encode($data);
                  
                  1. 读取N条记录,转为多维数组并输出JSON(第二种写法)
                  $sql = "select salesid,fromstore,fromsaler,salestime,salenum,totalprice from midea_sales";
                  $results = mysqli_query($con, $sql);
                  while ($rows = mysqli_fetch_assoc($results)) {
                  	$res[] = $rows;
                  }
                  //$res = str_replace('[', '{', json_encode($res));
                  //$res = str_replace(']', '}', $res);
                  print_r($res);
                  

                  4.读取N条记录,转为多维数组并输出JSON(第三种写法),适合获取全部记录

                  $sql = "select salesid,fromstore,fromsaler,salestime,salenum,totalprice from midea_sales";
                  $results = mysqli_query($con, $sql);
                  $rows = mysqli_fetch_all($results);
                  print_r($rows);
                  

                  在转换的过程中,JSON格式会出现[]和{}两种格式的JSON,而实际应用中对{}的接口是标准接口。如何转换呢?
                  原因在于:当array是一个从0开始的连续数组时,json_encode出来的结果是一个由[]括起来的字符串;而当array是不从0开始或者不连续的数组时,json_encode出来的结果是一个由{}括起来的key-value模式的字符串。

                  $sql = "select salesid,fromstore,fromsaler,salestime,salenum,totalprice from midea_sales";
                  $results = mysqli_query($con, $sql);
                  $rows = mysqli_fetch_all($results);
                  $rows = str_replace('[', '{', json_encode($rows));
                  $rows = str_replace(']', '}', $rows);
                  echo json_encode($rows);
                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  php判断一个变量是否为正整数,其实方法还是很多的,下面列举了三种方法,希望可以帮大家。 方法1: $keyword = '10'; // 0 1.1 1if(preg_match("/^[1-9][0-9]*$/",$keyword)){ echo "是正整数!"; exit();} 方法2: if ((floor($jp_total) - $jp_total) !==0
                  输出字符串的数据: $sql="select * from student";//sql语句$res=$dbquery($sql);$arr=$res-fetch_all();//把查询所有数据提取出来,放到二维数组中$str='';//定义一个空变量foreach($arr as $k=$v){//遍历查询的数据 $str.=implode(',',$v).',';//用逗号把每
                  以下是“学习php开源项目的源码指南”的完整攻略:
                  要实现PHP简单浏览目录内容的代码,主要需要以下几个步骤:
                  首先,我们需要了解PHP是一门开源的、服务器端脚本语言,主要用于Web应用程序的开发、可嵌入HTML中使用,以及可以与数据库进行交互。
                  在网络通信过程中,我们经常需要将数据从一种格式转换为另一种格式。编码和解码就是其中的两个重要过程。编码是将数据从一种表示形式转换为另一种表示形式的过程,而解码则是将已编码的数据重新转换成原来的表示形式。
                  • <bdo id='IO4OH'></bdo><ul id='IO4OH'></ul>

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

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

                        <tfoot id='IO4OH'></tfoot><legend id='IO4OH'><style id='IO4OH'><dir id='IO4OH'><q id='IO4OH'></q></dir></style></legend>