通过cURL

时间:2016-12-15 10:53:25

标签: php http curl

我想用一些带有cURL的外部网站的数据来提取一些代码的html代码,但是我们回复了一个null响应。如果我在浏览器中输入网址,我会获得我想要的数据,但我需要通过cURL或file_get_contents()从我的应用中执行此操作;

这是我的代码:

    $_awb = '888000074599';
    $url = 'http://89.45.196.45';
    $post_fields = ':8080/?id=8IM*8J*9K&NT='.$_awb;

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_fields);

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

1 个答案:

答案 0 :(得分:0)

您不应该使用CURLOPT_POSTFIELDS。您正尝试使用查询字符串执行GET请求,但postfields用于发出POST请求。

因此,将CURLOPT_URL设置为正确的(绝对)URL应该有效。

    $url = "http://89.45.196.45:8080/?id=8IM*8J*9K&NT="
    $nt = "888000074599";

    $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL, $url . $nt);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

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