gpt4 book ai didi

php - 使用 PHP 格式化 JSON 数据

转载 作者:搜寻专家 更新时间:2023-10-31 21:10:00 24 4
gpt4 key购买 nike

我有以下代码:

<?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。

有什么我想念的吗?

非常感谢任何帮助!

最佳答案

关于php - 使用 PHP 格式化 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22134494/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com