$json_arr = array('WebName'=>'PHP网站开发教程网','WebSite'=>'xxxxx');
$php_json = json_encode($json_arr); //把php数组格式转换成 json 格式的数据
echo $php_json;
$php_json = json_decode($php_json); //再把json格式的数据转换成php数组
print_r($php_json);
json和php数组 格式的互相转换
最新推荐文章于 2023-02-01 12:00:44 发布