PHP前端开发

如何用PHP获取JSON字符串中的值?

百变鹏仔 3天前 #PHP
文章标签 字符串

获取 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 参数的设置:

立即学习“PHP免费学习笔记(深入)”;

$json = json_decode($jsonAsString, true); // true 表示解码为数组$statusCode = $json['statusCode']; // 获取 statusCode 值

这样,便可成功访问 json 字符串中的 statuscode 值。