$srt = '{"list":"[{"BP":"94"},{"BP":"99"},{"BP":"85"},{"BP":"84"},{"BP":"95"}]"}'
I want to decode this json object , in
$json_arr2 = array();
$json_arr2 = json_decode($srt,true);
var_dump($json_arr2);
It gives null, please help me to get value from this string in php.