0
$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 中的这个字符串中获取值。

4

2 回答 2

2

JSON 无效。

尝试:

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

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

于 2013-05-24T14:34:17.750 回答
0

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

[之前和之后]应该没有"

于 2013-05-24T14:39:26.487 回答