从json string php获取价值

时间:2013-05-24 14:33:19

标签: php json

$srt = '{"list":"[{"BP":"94"},{"BP":"99"},{"BP":"85"},{"BP":"84"},{"BP":"95"}]"}'

我想在

中解码这个json对象
$json_arr2 = array();
$json_arr2  = json_decode($srt,true);

var_dump($json_arr2);

它给出null,请帮我从php中的这个字符串中获取值。

2 个答案:

答案 0 :(得分:2)

JSON无效。

尝试:

$srt = '{"list":[{"BP":"94"},{"BP":"99"},{"BP":"85"},{"BP":"84"},{"BP":"95"}]}';

http://www.jsonlint.com可能会在将来帮助您。

答案 1 :(得分:0)

使用http://www.jsoneditoronline.org/检查json的外观。

[之后]

之前不应该有