有没有人知道将这个字符串转换为数组的优雅方式
{"Order_status":{"order_country":"IN","order_flat":0,"order_currncy":"INR"}}
需要将上述字符串转换为数组
array('Order_staus'=>array('order_country'=>'IN','order_flat'=>0,'order_currency'=>'INR'))
答案 0 :(得分:0)
<?php
$s = '{"Order_status":{"order_country":"IN","order_flat":0,"order_currncy":"INR"}}';
var_dump(json_decode($s, true));
答案 1 :(得分:0)
使用json_decode($JSONstr)
将json字符串转换为php数组
和明智的诗句json_encode($phparray)
转换为jsonstr