gpt4 book ai didi

php - cURL 返回不同

转载 作者:太空宇宙 更新时间:2023-11-03 14:19:23 24 4
gpt4 key购买 nike

简单的脚本,但似乎没有在第二台服务器上正确发布字段。 php 信息的唯一区别是 NSS/3.12.7.0 和 NSS/3.12.9.0。一个在 https 上,另一个不在 https 上,还有我在这里缺少的另一个选项吗?

    $ch=curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
$result=curl_exec($ch);
curl_close($ch);

最佳答案

添加它会关闭 SSL 验证:

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

关于php - cURL 返回不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11317317/

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