当前位置:Gxlcms > PHP教程 > php如何获取json中的值呢?

php如何获取json中的值呢?

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

{"result":{"songs":[{"id":33916732,"name":"别,爱}]},{"songs":[{"id":3654522,"name":"年轮}]}...

有这样一组循环的数组,如何用php获取songs的id值,各位帮帮忙。

回复内容:

{"result":{"songs":[{"id":33916732,"name":"别,爱}]},{"songs":[{"id":3654522,"name":"年轮}]}...

有这样一组循环的数组,如何用php获取songs的id值,各位帮帮忙。

用json_decode() 来解析json数据,之后就用foreach()循环输出

人气教程排行