1.数组转json
$json=json_encode(数组名) 数组转json字符串
2,json转数组
$arr=json_decode(json字符串,[true])
不加true第一次转直接转为对象 加true才转为数组 true是可选参数
2022-02-28 18:45:03
1.数组转json
$json=json_encode(数组名) 数组转json字符串
2,json转数组
$arr=json_decode(json字符串,[true])
不加true第一次转直接转为对象 加true才转为数组 true是可选参数