我想将DuckDuckGo API产生的 json 文件解码为可读的 html 或 PHP 字符串。
我尝试使用 PHP json_decode
,但没有:
$object = json_decode($string, true);
echo $object['RelatedTopics']['Result'];
有任何想法吗?
我想将DuckDuckGo API产生的 json 文件解码为可读的 html 或 PHP 字符串。
我尝试使用 PHP json_decode
,但没有:
$object = json_decode($string, true);
echo $object['RelatedTopics']['Result'];
有任何想法吗?