Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 JSON 新手
["Date.UTC(2011,10,29)","13"]需要删除每个日期和频率中的双引号。尝试使用下面的代码..但仍然看到双引号..我错过了什么?
["Date.UTC(2011,10,29)","13"]
$json_string = json_encode($response); echo $json_string;
您需要使用 JSON DECODE
http://php.net/manual/pt_BR/function.json-decode.php
当您编码时,我需要解码 json。