在PHP中,你可以使用file_get_contents()
函數來發送GET請求,并設置請求頭。以下是一個示例代碼:
<?php
// 創建請求頭數組
$options = array(
'http' => array(
'header' => "Content-Type: application/x-www-form-urlencoded\r\n"
)
);
// 創建請求上下文
$context = stream_context_create($options);
// 發送GET請求
$response = file_get_contents('http://example.com/api', false, $context);
// 輸出響應內容
echo $response;
?>
在上述示例代碼中,我們首先創建了一個包含Content-Type
請求頭的關聯數組$options
。然后使用stream_context_create()
函數將該數組轉換為請求上下文。最后,通過調用file_get_contents()
函數發送GET請求,并傳遞請求上下文作為第三個參數。