1.数组转json

$json=json_encode(数组名) 数组转json字符串

2,json转数组

$arr=json_decode(json字符串,[true])

不加true第一次转直接转为对象 加true才转为数组 true是可选参数