当前位置:Gxlcms > PHP教程 > php开发api再输出json数据时是echo还是print_r,该怎么解决

php开发api再输出json数据时是echo还是print_r,该怎么解决

时间:2021-07-01 10:21:17 帮助过:4人阅读

php 开发api 再输出json数据时 是echo 还是print_r
假设 $selectRows是个数组 再输出时(也就是外部调用时)是echo 还是 return 还是print_r之类的 为啥外部一直获取不到我是 echo urlencode(json_encode($selectRows)),外部在调用时$gc=file_get_contents(http://域名/类名/方法名/传入的值) 但是在输出时,直接输出$gc还可以接收到数据 但是 print_r(urldecode(json_decode($selectRows)))打印数组时 却什么也没有了

------解决方案--------------------
$selectRows是你的数组 这样输出 : echo urlencode(json_encode($selectRows));
用file_get_contents得到$gc后,echo json_decode(urldecode($gc));
准没错

人气教程排行