2011-09-20 7 views

답변

-1
<?php 

$json = "[["tom",10,17.5],["af",13,["x",10,"y",12,"z",11]]]"; 

$obj = json_decode($json); 
print $obj->{'tom'}; 
?>