试图将雅虎股票提要添加到我的网站。我可以显示价格,但是当我只想要价格时它会打印一些不必要的文本
这是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 之外的所有内容