Call the API to return json data, how to convert the data into php objects, convenient phpstorm tips?
1条回答 默认 最新
doutuohan6606 2017-07-20 09:01关注If you have this json for example:
$j = '{ "a" : 1, "b" : "test" }'Then if you
$o = json_decode($j)you can use $o as a standard object (e.g.$o->{a}) If you$o = json_decode($j, true)yon can use $o as associative array (e.g.$o["a"])本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报