gpt4 book ai didi

php - 对站点的 cURL 请求返​​回空文档

转载 作者:太空宇宙 更新时间:2023-11-03 13:35:32 25 4
gpt4 key购买 nike

我有以下 cURL 请求,但它没有返回该特定 url 的任何结果?

$ch = curl_init("https://www.google.com");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

$result = curl_exec($ch);

curl_close($ch);

echo $result;

它只返回:

<html>
<head></head>
<body></body>
</html>

为了记录,我正在运行 php 5.2.5(libcurl/7.16.0 OpenSSL/0.9.8g zlib/1.2.3)有什么想法吗?

最佳答案

$str 没有定义,你想回显 $result

所以,只需将你的最后一行更改为 echo $result 就可以了

关于php - 对站点的 cURL 请求返​​回空文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41411469/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com