what: php处理json和数组对象转换的函数,可以全程数组操作,最后转为json how: function JSON($array) { return json_encode($array, JSON_UNESCAPED_UNICODE); } function JSonTO($json,$array=0) { //0对象1数组 return json_decode($json,$array); } 打赏感谢支持与鼓励~