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

私は同じコードを試し、応答を得ました

{"response":{"version": "0.1"、 "termsofService": " http://www.wunderground.com/weather/api/d/terms.html "、 "features":{"geolookup":1 、「条件」:1}

上記のコードは正しいです。関数によって返された値を出力するのを忘れるだけです

于 2013-03-05T06:50:43.287 に答える
0

API は疑わしいユーザー エージェントをブロックしているようです。の代わりに、標準ブラウザのユーザー エージェントを使用してみてくださいspider

通常 (ブラウザのユーザー エージェント) では、API は通常の応答を返します。

于 2013-03-05T08:10:01.690 に答える
0

追加するだけ

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

それは問題を解決しました

于 2016-11-30T07:15:48.687 に答える