通过 PHP 的 Json 响应

问题描述 投票:0回答:1

如何返回以下响应?

应该成功返回:

{ status : "ok", data : 
  [ { franchisor_no : <franchisor number>
    , franchisor_status : uncollected | active | delivered | returned | exception
  , events_list : 
    [ { date: <date>, status : uncollected | active | delivered | returned | exception
       , description: <optional description>
       , code: <optional code, may map to the defined franchisor codes>
       , location: <optional location, such as city or hub>.
       ... raw_event: <the original event as received from the franchisor API. mandatory 
... } ] } .... ] }

我正在使用此代码,但没有向我的服务器发送任何响应。如果这段代码有任何错误,请告诉我?

<?php
$data = json_decode(file_get_contents("php://input"));

echo json_encode = [
    "status" => "ok",
    "data" => [
        [
            "franchisor_no" => "1210110080",
            "franchisor_status" => "exception",
            "events_list" => [
                [
                    "date" => "30-07-2023",
                    "status" => "exception",
                    "description" => "optional",
                    "code" => "optional",
                    "location" => "optional",
                    "raw_event" => "mandatory"
                ],
            ],
        ],
    ],
];
php json return response
1个回答
0
投票

应该是

echo json_encode([
"status" => "ok",
"data" => [
    [
        "franchisor_no" => "1210110080",
        "franchisor_status" => "exception",
        "events_list" => [
            [
                "date" => "30-07-2023",
                "status" => "exception",
                "description" => "optional",
                "code" => "optional",
                "location" => "optional",
                "raw_event" => "mandatory"
            ],
        ],
    ],
]]);

您没有调用 json_encode()。你只是在它前面加上一个等号

© www.soinside.com 2019 - 2024. All rights reserved.