gpt4 book ai didi

PHP curl_exec 不包含 url 页面

转载 作者:搜寻专家 更新时间:2023-10-31 21:53:24 24 4
gpt4 key购买 nike

我正在尝试使用 curl 捕获网页并通过电子邮件发送,但我的 curl_exec($ch) 没有返回任何内容。这是我的代码:

$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_URL, $URL);

$resultat = curl_exec($ch);
curl_close($ch);

这段代码中,$resultat是空的……你们知道为什么吗?当我执行 phpinfo() 时,我可以看到 curl 已启用。

编辑:

这是 curl_getinfo($ch) 结果:

Array
(
[url] => ***link hidden***
[content_type] => text/html
[http_code] => 200
[header_size] => 358
[request_size] => 93
[filetime] => -1
[ssl_verify_result] => 0
[redirect_count] => 0
[total_time] => 0.005051
[namelookup_time] => 0.001273
[connect_time] => 0.001904
[pretransfer_time] => 0.001931
[size_upload] => 0
[size_download] => 904
[speed_download] => 178974
[speed_upload] => 0
[download_content_length] => 904
[upload_content_length] => 0
[starttransfer_time] => 0.00503
[redirect_time] => 0
[certinfo] => Array ()
[primary_ip] => (HIDDEN)
[primary_port] => 80
[local_ip] => 192.168.145.80
[local_port] => 37648
[redirect_url] =>
)

最佳答案

我的问题已经解决,因为在我的 CURL 页面中,我没有生成整个页面所需的数据库连接。一个小错误 :) 感谢您的回答。

关于PHP curl_exec 不包含 url 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36737939/

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