使用PHP格式化JSON数据

时间:2014-03-02 22:28:28

标签: php json

我有以下代码:

<?php
$ids = 'ids=com.hugogames.hugotrollwars';

$opts = array('http' =>
array(
    'method'  => 'POST',
    'header'  => 'Content-type: application/x-www-form-urlencoded',
    'content' => $ids
)
);
$context  = stream_context_create($opts);
$result = file_get_contents('https://play.google.com/store/xhr/getdoc', false,             
$context);

$convert = explode("\n", $result);

基本上它从Playstore中提取权限并将其显示为字符串。我遇到的问题是删除不需要的数据(图像链接,描述),只显示权限和权限说明。我尝试使用php的json_decode函数,它返回NULL。

有什么我想念的吗?

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:2)