$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 中的这个字符串中获取值。
JSON 无效。
尝试:
$srt = '{"list":[{"BP":"94"},{"BP":"99"},{"BP":"85"},{"BP":"84"},{"BP":"95"}]}';
http://www.jsonlint.com将来可能会对您有所帮助。
使用http://www.jsoneditoronline.org/检查您的 json 的外观。
[之前和之后]应该没有"