我想我已经错过了明显的某个地方,解析格式参数的最佳方法是什么...
'{"phonenumber":"123456", "mobile":"589521215", "website":"www.xfty.co.uk" }'
所以我有个别变量?
如果您有一个包含JSON内容的字符串:
$string = '{"phonenumber":"123456","mobile":"589521215","website":"www.xfty.co.uk"}';
您可以解析它并使用json_decode获取关联数组:
$array = json_decode( $string, true );
并访问数组:
$array["phonenumber"] //will give back '123456'
或者,如果您想获得一个stdClass
对象,只需使用:
$object = json_decode( $string );
得到它:
$object->phonenumber; //will give back '123456'