如何在PHP数组中解码以下语法:
{
'Property': {
'Lang', 'en'
, 'Make': function () {
// Do something
}
}
}
其中“Make
”的值为string
最后得到一张表:
echo $ array ['property'] [ 'lang']; // String
echo $ array ['property'] [ 'Make']; // String
请注意:这不是我使用的标准JSON,请参阅Make
属性。
答案 0 :(得分:0)
你的意思是函数 json_decode()?你可以在这里阅读更多相关信息:
答案 1 :(得分:0)
你可以使用json_decode();在你的代码中。
json_decode($json_result);
"的 $ json_result 强>"你的数据是json类型。
为了你的知识 http://www.php.net/manual/en/function.json-decode.php