0

我正在使用 curl 从特定站点 api.wunderground.com 获取天气信息,但问题是它不起作用。我也尝试过使用 file_get_contents 函数,但它也不起作用。这是我的 curl 代码:

function get_web_page($url)
        {
            //echo "curl:url<pre>".$url."</pre><BR>";
        $options = array(
            CURLOPT_RETURNTRANSFER => true,     // return web page
            CURLOPT_HEADER         => false,    // don't return headers
            CURLOPT_FOLLOWLOCATION => true,     // follow redirects
            CURLOPT_ENCODING       => "",       // handle all encodings
            CURLOPT_USERAGENT      => "spider", // who am i
            CURLOPT_AUTOREFERER    => true,     // set referer on redirect
            CURLOPT_CONNECTTIMEOUT => 15,      // timeout on connect
            CURLOPT_TIMEOUT        => 15,      // timeout on response
            CURLOPT_MAXREDIRS      => 10,       // stop after 10 redirects
            CURLOPT_PROXY          => null,

        );                  

        $ch         = curl_init($url);
        curl_setopt_array( $ch, $options );
        $content    = curl_exec( $ch );
        $err        = curl_errno( $ch );
        $errmsg     = curl_error( $ch );
        $header     = curl_getinfo( $ch,CURLINFO_EFFECTIVE_URL );
        curl_close( $ch );

        $header['errno']   = $err;
        $header['errmsg']  = $errmsg;

        //change errmsg here to errno
        if ($errmsg)
        {
            echo "CURL:".$errmsg."<BR>";
        }
        return $content;
        }

        $url        =   "http://api.wunderground.com/api/67927f145c532a19/geolookup/conditions/q/uae/dubai.json";

        get_web_page($url);

我检查了我的服务器设置,启用了 curl 并且服务器正在使用端口 80。任何人都可以帮助我解决这个问题,我没有想法。

4

5 回答 5

3

你只需要回显输出。

echo get_web_page($url);

编辑:

您也可以使用file_get_contents

<?php
$url="http://api.wunderground.com/api/67927f145c532a19/geolookup/conditions/q/uae/dubai.json";
echo file_get_contents($url);
?>

代码更新:

<?php
function get_web_page($url)
{    
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_TIMEOUT, 120);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    $curl_result = curl_exec($ch);
    curl_close ($ch);
    return $curl_result;
}

$url="http://api.wunderground.com/api/67927f145c532a19/geolookup/conditions/q/uae/dubai.json";
echo get_web_page($url);
?>
于 2013-03-05T06:42:32.210 回答
0

也许你通过代理连接到互联网。你可以通过在 curl_setopt 函数中设置代理来获取它。它对我来说很好。

于 2013-07-31T07:35:40.620 回答
0

API 似乎阻止了可疑的用户代理。尝试使用标准浏览器用户代理而不是spider.

正常情况下(浏览器的用户代理),API 返回正常响应。

于 2013-03-05T08:10:01.690 回答
0

我尝试了相同的代码并得到了响应

{“响应”:{“版本”:“0.1”,“termsofService”:“ http://www.wunderground.com/weather/api/d/terms.html ”,“功能”:{“geolookup”:1 , "条件": 1 }

上面的代码是对的。您只是忘记打印函数返回的值

于 2013-03-05T06:50:43.287 回答
0

只需添加

        CURLOPT_FOLLOWLOCATION => true,
        CURLOPT_SSL_VERIFYHOST => false,
        CURLOPT_SSL_VERIFYPEER => false,
        CURLOPT_PROXY => false,

它解决了这个问题

于 2016-11-30T07:15:48.687 回答