如何将语法表解码为PHP数组

时间:2016-05-18 10:48:15

标签: php arrays json

如何在PHP数组中解码以下语法:

{

'Property': {

'Lang', 'en'

, 'Make': function () {

// Do something

}
}

}

其中“Make”的值为string

类型

最后得到一张表:

echo $ array ['property'] [ 'lang']; // String

echo $ array ['property'] [ 'Make']; // String

请注意:这不是我使用的标准JSON,请参阅Make属性。

2 个答案:

答案 0 :(得分:0)

你的意思是函数 json_decode()?你可以在这里阅读更多相关信息:

http://www.php.net/manual/en/function.json-decode.php

答案 1 :(得分:0)

你可以使用json_decode();在你的代码中。

json_decode($json_result);

"的 $ json_result "你的数据是json类型。

为了你的知识 http://www.php.net/manual/en/function.json-decode.php