卷曲给出错误卷曲:(7)无法连接到主机

时间:2016-02-28 00:09:41

标签: php curl

我正在尝试使用exec()函数从php执行curl命令,但它给了我那个错误

  

卷曲:(7)无法连接到主机

这是我的代码:

$command = "curl http://localhost:6821/schedule.json 
           -d project=default -d search=".$_POST["search_type"]." 
           -d url='".$url_info["url"]."' -d domain='".$domain."' -d               
           city='".$url_info["city"]."' -d state='".$url_info["state"]."' 2>&1";

$return = exec($command);
echo $return;

我是卷毛的初学者。我搜索并发现有一个php库可以执行curl命令功能,但我不知道如何使用curl库将此命令行传输到php代码。

1 个答案:

答案 0 :(得分:0)

这可能是你的问题。由于curl设置为端口6821,因此可能会被阻止。端口80的相同请求是否有效?看看这个其他帖子。

How to resolve cURL Error (7): couldn't connect to host?