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_encode 有一个奇怪的问题。
这样做:
echo json_encode(array('action' => 'act'));
返回这个:
"\u0000\"action\":\"act\"}
是的,没有起始括号。如何解决这个问题?
我没有这个问题输出是
{"action":"act"}
问题是 json_encode 运行了两次。