JSON多维打印



我必须以以下格式打印json

> { header: [ { "signinpage": "ABC" }, { "signinpage": "XYZ" }, {
> "signinpage": "PQR" }, { "signinpage": "ERT" } ] }

我使用了以下代码:

 while ($row = mysql_fetch_array($res,MYSQL_ASSOC)) 
  {
    $rows[] = $row["customer"];
  }
  if(mysql_num_rows($res)!= 0)
     {  
      if (!isset($responses[$row['$header']= array ()]))
      {
        for ($i=0;$i<count($rows);$i++)
        {
           if(isset($responses[$row['$header']])) 
           {
              $responses[$row[$header]] = array('signinpage'=>$rows[$i]); 
           }  
         }
       }
       header('Cache-Control: no-cache, must-revalidate');
       header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
       header('Content-type: application/json; charset="utf-8"');
       echo json_encode($responses);
     }

我是JSON的新手,发现很难打印,谁能帮助我得到想要的输出。

你的循环有问题。我看不出你的$row/$header变量设置和在那里是什么。你写的isset条件是错误的。试试这样做:

$responses = array();
while ($row = mysql_fetch_array($res,MYSQL_ASSOC))  {
    $rows[] = $row["customer"];
}
if(mysql_num_rows($res)!= 0) {  
    if (!isset($responses[$row['$header']])) {
        // in case it is not set, create an array..,
        $responses[$row['$header']]= array();
        for ($i=0; $i<count($rows); $i++) {
            // for each row add your assoziative array to it
            $responses[$row[$header]][] = array('signinpage'=>$rows[$i]); 
        }
    }
}
header('Cache-Control: no-cache, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Content-type: application/json; charset="utf-8"');
echo json_encode($responses);

$responses = array();在while循环之前添加这一行。

$responses = array();
 while ($row = mysql_fetch_array($res,MYSQL_ASSOC)) 
  {
    $rows[] = $row["customer"];
  }
  if(mysql_num_rows($res)!= 0)
     {  
      if (!isset($responses[$row['$header']= array ()]))
      {
        for ($i=0;$i<count($rows);$i++)
        {
           if(isset($responses[$row['$header']])) 
           {
              $responses[$row[$header]] = array('signinpage'=>$rows[$i]); 
           }  
         }
       }
       header('Cache-Control: no-cache, must-revalidate');
       header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
       header('Content-type: application/json; charset="utf-8"');
       echo json_encode($responses);
     }

$header在你的代码中是什么,它没有被赋值。

if (!isset($responses[$row['$header']= array ()]))这是错误的。键不能为数组

现在试一下,它应该为您工作:

$rows = array();
while($row = mysql_fetch_array($res)) { 
$rows[$row['$header']][]['signinpage']=$row['customer'];
}
print json_encode($rows);

希望这对你有帮助!

相关内容

  • 没有找到相关文章

最新更新