PHP json_decode 用法

端木野
2023-12-01

json_decode 打印格式

$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';

//解析为json对象
var_dump(json_decode($json));

 类似资料: