在PHP中发送GET请求并获取返回数据,你可以使用file_get_contents()函数或者curl库。以下是两种方法的示例:

使用 file_get_contents() 函数:

$url = 'http://example.com/api/data?param1=value1¶m2=value2';

php怎么发送get请求取返回数据_数据url);

echo $response;

使用 curl 库:

$url = 'http://example.com/api/data?param1=value1¶m2=value2';

php怎么发送get请求取返回数据_PHP_02url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

php怎么发送get请求取返回数据_数据_03ch);

curl_close($ch);

echo $response;

这两种方法都可以用于发送GET请求并获取返回数据。file_get_contents()函数简单易用,但对于更复杂的请求和更多的控制,推荐使用curl库。