我认为这将回答您的问题: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" ];
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)