douyou2234 2012-10-23 09:21
浏览 8

用PHP显示JSON [关闭]

I posted this question earlier but needed to clarify quite a few things to make it easier for everyone. I'm trying to output this with JSON and nothing I'm doing seems to be working...

{
  "request": {
    "act": "user_create",
    "user_email": "newuser@example.com",
    "user_zone": "example.com"
  },
  "result": "success",
  "msg": "A message that will be displayed to the end user"
  ...
}

Here's the code that I'm currently using:

<?php
    $array[0]=array("request"=>array("act"=>'user_create', 
                                     "user_email"=>"newuser@example.com", 
                                     "user_zone"=>"example.com"));
    $array[1]=array('result' => 'success');
    $array[2]=array('msg' => 'A message that will be displayed to the end user');
    echo json_encode($array);
?>

With that code I am getting this output which is close but not quite there and isn't a valid json output. Not sure what to change but here's what I'm currently getting:

[{"request":{"act":"user_create","user_email":"newuser@example.com","user_zone":"example.com"}},{"result":"success"},{"msg":"A message that will be displayed to the end user"}] 

If someone could please post an example of my fixed PHP code that would be great. I've been bouncing back and forth all for the past several hours testing out different solutions and nothing seems to be displaying exactly what I need :/ Thanks in advance!

  • 写回答

6条回答 默认 最新

  • dongtang4019 2012-10-23 09:24
    关注

    Try with that..

        $array = array(
        "request" => array(
            "act"=>"user_create",
            "user_email"=>"newuser@example.com",
            "user_zone"=>"example.com"
            ),
        "result"=>"success",
        "msg"=>"A message that will be displayed to the end user"
        );
        echo json_encode($array);
    
    评论

报告相同问题?

悬赏问题

  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 个人网站被恶意大量访问,怎么办
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大