PHP

php json_decode函数怎么使用

小亿
100
2023-09-25 20:40:27
栏目: 编程语言

PHP中的json_decode函数用于将JSON格式的字符串转换为PHP对象或关联数组。

基本语法:

mixed json_decode ( string $json [, bool $assoc = FALSE [, int $depth = 512 [, int $options = 0 ]]] )

参数说明:

示例代码:

$json_string = '{"name":"John", "age":30, "city":"New York"}';
// 解码为对象
$object = json_decode($json_string);
echo $object->name; // 输出:John
echo $object->age; // 输出:30
echo $object->city; // 输出:New York
// 解码为关联数组
$array = json_decode($json_string, true);
echo $array['name']; // 输出:John
echo $array['age']; // 输出:30
echo $array['city']; // 输出:New York

注意:

0
看了该问题的人还看了