php 有快速把 object 或者 arr 转成 json 字符串的函数吗?
程序员文章站
2022-03-31 18:29:49
...
php 有快速把 object 或者 arr 转成 json 字符串的函数吗?
回复内容:
php 有快速把 object 或者 arr 转成 json 字符串的函数吗?
哎,技穷要多看书。 json_encode
json_encode
(object) $arr;
(array) $obj;
json_encode($arr);
json_decode($json);
json_decode json_encode........
可以借助一个第三方库,百度搜一下,会有很多出来的
如果你是用mac系统。 建议你安装Dash ,各种技术文档方便查看。收藏了一篇介绍mac工具的。 http://go2live.cn/archives/13...
json_encode json_decode
自己看看PHP手册。。。