将查询结果保存在一个数组中

时间:2014-10-23 14:17:07

标签: php android mysql arrays json

我是PHP的绝对初学者。我目前正在开发一个Android应用程序,它具有PHP的Web服务。我需要获得2个执行的SQL-Querys的结果并将其转换为json。我的问题是我没有得到任何结果回到客户端,我也没有得到任何错误。我认为这是因为我将结果分成两个数组。如何将2个查询的结果保存为一个数组,以便作为一个json响应?

Code EDITED:

<?php
    $host = "localhost"; // host of MySQL server
    $user = "root"; // MySQL user
    $pwd = ""; // MySQL user's password
    $db = "food"; // database name

    // Create connection
    $con = mysqli_connect($host, $user, $pwd, $db);

    // Check connection
    if(mysqli_connect_errno($con)) {
        die("Failed to connect to MySQL: " . mysqli_connect_error());
    } 
    //$uname = $_POST['uname'];

    // query the application data
    $sql = "SELECT * FROM uploads WHERE status = '0' ORDER By  precious_time DESC";
    $sql2 = "SELECT * FROM uploads_avatar WHERE uname = 'sinii'";

    $result = mysqli_query($con, $sql);
    $result2 = mysqli_query($con, $sql2);

    // an array to save the application data
    $rows = array();
    $rows2 = array();

    // iterate to query result and add every rows into array
    while($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
        $rows[] = $row; 

    }

    // iterate to query result and add every rows into array
    while($row2 = mysqli_fetch_array($result2, MYSQLI_ASSOC)) {
       $rows2[] = $row2; 

    }

    $result_merge = array_merge($rows, $rows2);

    // close the database connection
    mysqli_close($con);


    // echo the application data in json format
    echo json_encode($result_merge);
    ?>

但是我在没有第二个查询的情况下使用第二个数组等运行应用程序,然后它可以工作,但我也需要第二个查询的数据。

感谢您的帮助!

2 个答案:

答案 0 :(得分:1)

要获取一个数组中的值,请使用array_merge合并两个数组,或者您可以使用此格式执行此操作

$jsonResult = array();

while($row2 = mysqli_fetch_array($result2, MYSQLI_ASSOC)) {
  $jsonResult["uploads"][] = $row; 
}


while($row2 = mysqli_fetch_array($result2, MYSQLI_ASSOC)) {
  $jsonResult["upload_avatar"][] = $row2; 
}

echo json_encode($jsonResult);

使用数组合并

 $jsonResult = array_merge($rows, $rows2);
   echo json_encode($jsonResult);

对于json响应,您应首先通过在Web浏览器中查看响应来检查响应。

答案 1 :(得分:0)

为什么不在查询时使用MySQL查询来合并两个表?

从上传中选择*,uploads_avatar,其中up​​loads.status =&#39; 0&#39;和uploads_avatar.uname =&#39; sinii&#39;;