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.
var_dump($array)打印µg(微克)字符很好。当我使用 打印相同的数组时echo json_ecode($array);,µg字符被替换为null。
var_dump($array)
µg
echo json_ecode($array);
null
如何正确编码字符串?
您必须使用utf8_encode正确编码字符串以在 JSON 中使用。
utf8_encode