当前位置:Gxlcms > PHP教程 > 没有双引号的JSON格式,有什么办法用PHP解开吗解决方案

没有双引号的JSON格式,有什么办法用PHP解开吗解决方案

时间:2021-07-01 10:21:17 帮助过:30人阅读

没有双引号的JSON格式,有什么办法用PHP解开吗
没有双引号的JSON格式,有什么办法用PHP解开吗。
格式如:{name: "brandId1", type: "String1"}
json的标准格式应该是key有双引号,目前第三方数据无引号,请问有什么办法可以解开为数组吗

------解决方案--------------------
PHP code
$s = <<< JSON
{name: "brandId1", type: "String1"}
JSON;

print_r(ex_json_decode($s));

function ex_json_decode($s, $mode=false) {
  if(preg_match('/\w:/', $s))
    $s = preg_replace('/(\w+):/is', '"$1":', $s);
  return json_decode($s, $mode);
}                     

人气教程排行