如何使用CURL_init()读取ECB数据

时间:2019-03-23 20:45:03

标签: php xml curl currency

请帮我,我有点卡在这里。 下面的代码不返回任何结果。 我不明白我要去哪里错了?

private function _request($url)
{
    $url="https://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml";

    if (function_exists('curl_version'))
    {

        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_HEADER, 0);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER["HTTP_USER_AGENT"]);

        $raw_data = $this->_curl_exec_follow($ch);
        curl_close($ch);
    } else // no CUrl, try differently
        $raw_data = file_get_contents($url);

    print_r("------------<br>");
    print_r($raw_data);
    print_r("<br>------------"); exit();


}

0 个答案:

没有答案