我正在尝试解码 JSON 格式
我要发送的是:
{
"id": 123,
"name": "John",
“surname”: “Smith”,
“department”: 3
}
在图片中,我正在通过 Postman 发送带有数据的 POST。
所以,这是我要解码的数据:
"data_serever_received": "{ \"id\": 123, \"name\": \"john\", “surname”: “Smith”, “department”: 3 }"
我试过了
$this->input->data["id"]
但它不工作。
如何获取 id、name、surname 等值?