如何在 PHP 中使用 cURL 檢索和解碼 JSON 資料
要使用 cURL 從遠端伺服器擷取 JSON數據,您可以按照以下步驟操作步驟:
初始化cURL處理:
$ch = curl_init();
設定cURL選項:
:設定為true以字串形式回傳回應而不是列印它
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_URL, "https://.../api.php?action=getThreads&hash=123fajwersa...");
$result = curl_exec($ch);
curl_close($ch);
$array = json_decode($result, true);
$title = $array["threads"][38752]["title"];
$message = $array["threads"][38752]["content"]["content"][226167]["message"];
>解碼JSON data
:$username = $array["threads"][38752]["content"]["content"][226167]["username"];
以字串形式檢索 JSON 資料後,可以使用 json_decode() 函數來解碼。以下程式碼顯示如何解碼 JSON 資料:
現在您可以將解碼後的 JSON 資料作為關聯數組進行存取。例如,要存取第一個主題的標題,您可以使用:$result = file_get_contents($url); $array = json_decode($result, true);
以上是如何在 PHP 中使用 cURL 檢索和解碼 JSON 資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!