雅虎CSV历史报价PHP CURL

时间:2014-01-01 12:24:10

标签: php curl

尝试使用CURL下载雅虎历史报价,但无法将其连接到

http://code.google.com/p/yahoo-finance-managed/wiki/csvHistQuotesDownload

以下是我发送的$url的示例

http://ichart.yahoo.com/table.csv?s=DDD&a=11&b=4&c=2013&d=11&e=6&f=2013

public function curl($url)
{

  $ch = curl_init(); 
  curl_setopt($ch, CURLOPT_URL, $url); 

  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($ch, CURLOPT_TIMEOUT, '25');
  $content = trim(curl_exec($ch));

  if(curl_errno($ch))
    {
        $info = curl_getinfo($ch);

        print_r($info);
    }

  curl_close($ch);



  return $content;  



}

返回的卷曲信息并没有告诉我什么,有谁知道如何更好地理解这个问题?

1 个答案:

答案 0 :(得分:1)

雅虎已从

更改了历史报价网址的子域名

<强> ichart.yahoo.com

<强> ichart.finance.yahoo.com

试试这个网址 http://ichart.finance.yahoo.com/table.csv?s=DDD&a=11&b=4&c=2013&d=11&e=6&f=2013

它对我有用。

我发现它here