PHP中如何发送GET请求

avatar
作者
猴君
阅读量:0

在PHP中发送GET请求可以使用file_get_contents()函数或者cURL扩展库。

使用file_get_contents()函数:

$url = 'http://example.com/api/users'; $response = file_get_contents($url); echo $response; 

使用cURL扩展库:

$url = 'http://example.com/api/users'; $curl = curl_init($url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($curl); curl_close($curl); echo $response; 

以上代码示例中,$url是要发送GET请求的URL地址,$response是接收返回的数据。在file_get_contents()函数中,直接使用函数来发送请求并接收返回数据;而在cURL扩展库中,通过curl_init()初始化一个cURL会话,然后设置CURLOPT_RETURNTRANSFER选项来确保获取返回数据,最后使用curl_exec()发送请求并接收返回数据。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!