首先,您的格式不是json,您可以执行如下操作。
检查注释
$str='[1501801200000,,"0.07873100","0.07925600","0.07827700","0.07896500","460.84900000",1501804799999,"36.32928908",598,"220.92800000","17.41827596","26410.13557257"], ,[1501804800000,"0.07896500","0.07921800","0.07859000","0.07904500","791.20700000",1501808399999,"62.42483876",588,"303.41800000","23.93436841","26415.92962855"]';
//tidy up whitespace
$str = preg_replace('!\s+!', '', $str);
//replace mulitple comma with single one
$str=preg_replace('!,+!', ',', $str);
echo $str;
如果json字符串有空格,则编辑以修复错误
$str=preg_replace('/\s*,\s*/', ',', $str);
echo $str=preg_replace('!,+!', ',', $str);