dongxiao1591 2015-09-09 15:32
浏览 86
已采纳

从SQL Server检索数据并将其转换为json格式?

I am using PHP 5.6.0 and connected to my local SQL Server. I was able to retrieve the data, but it is in an array format. I would like to convert it into a json format.

What I get:

(     
    [date] => 2013-02-05 16:02:02.000000
    [timezone_type] => 3
    [timezone] => America/New_York
)

What I want:

(
    "date" : "2013-02-05 16:02:02.000000",
    "timezone_type" : "3",
    "timezone" : "America/New_York"
)

Here is my code:

$sql = "SELECT * FROM table";
$stmt = sqlsrv_query($conn, $sql);

$result = array(); 

do {
    while ($row = sqlsrv_fetch_array($stmt, SQLSRV_FETCH_ASSOC)){
    $result[] = print_r($row); 
    }
} while (sqlsrv_next_result($stmt));


echo json_encode($result);


sqlsrv_free_stmt($stmt);
sqlsrv_close($conn);

My understanding is that json_encode should convert my data but it doesn't seem to work that way.

Thank you!

  • 写回答

3条回答 默认 最新

  • drot98385 2015-09-09 15:57
    关注

    I guess there were two mistakes in your code. First one is

    $result[] = print_r($row); 
    

    You are executing a function and pushing values in array at same time. You should push value in array here. Like

    $result[] = $row;
    

    And Second one is, not printing the JSON varibale after encoding it. So your code would be

    $sql = "SELECT * FROM table";
    $stmt = sqlsrv_query($conn, $sql);
    
    $result = array(); 
    
    do {
        while ($row = sqlsrv_fetch_array($stmt, SQLSRV_FETCH_ASSOC)){
           $result[] = $row; 
        }
    } while (sqlsrv_next_result($stmt));
    
    
    sqlsrv_free_stmt($stmt);
    sqlsrv_close($conn); //Close the connnectiokn first
    
    echo json_encode($result); //You will get the encoded array variable
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?