
PHP json格式化成数组 怎么处理
1个回答
展开全部
<?php
//使用json_decode将json字符串转换为数组
$json = '{"Hello":"World"}';
//json_decode ( string $json [, bool $assoc = false [, int $depth = 512 [, int $options = 0 ]]] );
$decode_array = json_decode($json, true);
print_r($decode_array);
?>
输出:Array ( [Hello] => World )
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询