PHP页面之间怎么通过json传递数组
时间:2021-07-01 10:21:17
帮助过:18人阅读
PHP页面之间如何通过json传递数组
PHP页面之间如何通过json传递数组?
------解决方案--------------------模拟post
curl
----------------------
------解决方案--------------------可以通过session或者cookie 楼主可以将序列化的值保存起来之后再另外一个页面去获取,做简单的办法就是通过url传值。
------解决方案--------------------json_encode($array) json_decode($jsonstr)
------解决方案--------------------json 直接存储到变量就行了,如果太大建议保存到文件
------解决方案--------------------发送方 json_encode
接收方 json_decode
json 就是一个字符串,怎么传递都可以