解决cURL错误(7):无法连接到主机的有效方法
P粉674999420
P粉674999420 2023-08-20 16:21:20
[PHP讨论组]

我使用cUrl(php)以xml格式将一个项目代码发送到一个web服务。在本地主机上,我得到了正确的响应,但是当在服务器上执行时,它显示:

cURL错误(7):无法连接到主机

以下是我的代码:

function xml_post($post_xml, $url)
{
    $user_agent = $_SERVER['HTTP_USER_AGENT'];

    $ch = curl_init();    // 初始化curl句柄
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_URL, $url); 
    curl_setopt($ch, CURLOPT_FAILONERROR, 1);          
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);    
    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); 
    curl_setopt($ch, CURLOPT_TIMEOUT, 50); 
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_xml); 
    curl_setopt($ch, CURLOPT_USERAGENT, $user_agent);
//  curl_setopt($ch, CURLOPT_PORT, $port);          

    $data = curl_exec($ch);
    $curl_errno = curl_errno($ch);
    $curl_error = curl_error($ch);
    if ($curl_errno > 0) {
            echo "cURL错误($curl_errno):$curl_errorn";
    } else {
            echo "接收到的数据n";
    }
    curl_close($ch);

    echo $data;
}

我将项目代码发送到tally并从中获取详细信息。我尝试使用php 4+和php5+的两个版本,但都没有成功。有什么解决办法吗?

P粉674999420
P粉674999420

全部回复(1)
P粉208286791

非常明确...它的意思是无法连接到主机或代理。

以下代码在任何系统上都可以工作:

$ch = curl_init("http://google.com");    // 初始化curl句柄
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$data = curl_exec($ch);
print($data);

如果您无法看到谷歌页面,则可能是您的URL有误或您有一些防火墙限制问题。

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号