0

试图将雅虎股票提要添加到我的网站。我可以显示价格,但是当我只想要价格时它会打印一些不必要的文本

这是wordpress中的功能

function getStock($quote='GOOG')
{
$file = "http://download.finance.yahoo.com/d/quotes.csv?s=$quote.AX&f=l1";
$handle = fopen($file, "r");
while($data = fgetcsv($handle, 4096, ','))
     print_r($data);    
fclose($handle);
}

这就是它的输出

 Array ( 
   [0] => 0.110 
  )

它快到了,只需要删除除 0.110 之外的所有内容

4

1 回答 1

3

替换print_r($data)

$d = array_shift($data); print_r($d);
于 2013-05-08T06:28:10.437 回答