如何用PHP获取JSON字符串中的值?(字符串.如何用.获取.PHP.JSON...)
获取 get 返回的 json 字符串中的值
使用 php 的 json_encode 函数将 json 字符串编码为 php 字符串时,若要访问字符串中的值,可使用 json_decode 函数。
问题中给出的 json 字符串示例为:
{ "headers": { "content-type": ["application/json;charset=utf-8"], "content-length": ["110"] }, "statuscode": 200 }
使用 json_decode 函数,我们可以将其解码为 php 对象或数组,具体取决于 json_object_as_array 参数的设置:
$json = json_decode($jsonAsString, true); // true 表示解码为数组 $statusCode = $json['statusCode']; // 获取 statusCode 值
这样,便可成功访问 json 字符串中的 statuscode 值。
以上就是如何用PHP获取JSON字符串中的值?的详细内容,更多请关注知识资源分享宝库其它相关文章!