如何使用cURL获取jSON数据并解码数据?

如何使用cURL获取jSON数据并解码数据?,第1张

如何使用cURL获取jSON数据解码数据?

我认为这将回答您的问题:P

$url="https://.../api.php?action=getThreads&hash=123fajwersa&node_id=4&order_by=post_date&order=‌​desc&limit=1&grab_content&content_limit=1";

使用

cURL

//  Initiate curl$ch = curl_init();// Will return the response, if false it print the responsecurl_setopt($ch, CURLOPT_RETURNTRANSFER, true);// Set the urlcurl_setopt($ch, CURLOPT_URL,$url);// Execute$result=curl_exec($ch);// Closingcurl_close($ch);// Will dump a beauty json :3var_dump(json_depre($result, true));

使用

file_get_contents

$result = file_get_contents($url);// Will dump a beauty json :3var_dump(json_depre($result, true));

存取中

$array["threads"][13]["title"]

$array["threads"][13]["content"]["content"][23]["message" ];


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5114607.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存