我从另一个站点收到这个 JSON 字符串,但我无法修改收到的内容。该字符串在 $_POST 中接收并且是:
[
{
"clientId":"17295c59-4373-655a-1141-994aec1779dc",
"channel":"\/meta\/connect",
"connectionType":"long-polling",
"ext":{
"fm.ack":false,
"fm.sessionId":"22b0bdcf-4a35-62fc-3764-db4caeece44b"
},
"id":"5"
}
]
我使用以下代码解码 JSON 字符串:
$receive = json_decode(file_get_contents('php://input'));
当我使用时,print_r($receive)
我得到以下信息:
Array (
[0] => stdClass Object
(
[clientId] => 17295c59-4373-655a-1141-994aec1779dc
[channel] => /meta/connect
[connectionType] => long-polling
[ext] => stdClass Object
(
[fm.ack] =>
[fm.sessionId] => 22b0bdcf-4a35-62fc-3764-db4caeece44b
)
[id] => 5
)
)
我可以毫无问题地访问和读取所有数组/对象:
$receive[$i]->clientId;
$receive[$i]->channel;
$connectionType = $receive[$i]->connectionType;
$receive[$i]->id;
$receive[$i]->ext->{'fm.sessionId'};
但是 {fm.ack} 是空的
在解码的 JSON 字符串中,false 值不在""
.
是否可以访问和读取错误值并将其转换为字符串值?
谢谢你的帮助!