在PHP中發(fā)送GET請(qǐng)求,可以使用file_get_contents()
函數(shù)或者cURL
庫(kù)來(lái)實(shí)現(xiàn)。以下是兩種方法的示例代碼:
file_get_contents()
函數(shù)發(fā)送GET請(qǐng)求:$url = 'http://example.com/api/data?key1=value1&key2=value2';
$response = file_get_contents($url);
echo $response;
cURL
庫(kù)發(fā)送GET請(qǐng)求:$url = 'http://example.com/api/data?key1=value1&key2=value2';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
以上代碼示例中,$url
是要發(fā)送GET請(qǐng)求的URL地址,可以在URL地址后面添加參數(shù)。file_get_contents()
函數(shù)會(huì)直接返回請(qǐng)求的結(jié)果,而cURL
庫(kù)可以更加靈活地設(shè)置請(qǐng)求參數(shù)和處理請(qǐng)求的結(jié)果。