标签: php json
我想将对象数组转换为JSON编码,但是如何将PHP数组编码为JSON数组。
答案 0 :(得分:1)
如果要将php数组转换为json 使用:
json_encode($array);
json_encode
用于解码
json_decode($array);
json_decode