http://finance.google.com/finance/info?client=ig&q=GOOG (これは単なる例です)を使用して、Google ファイナンスから PHP と JSON を使用して、リアルタイムの株式更新/見積もりを取得しています 。私のコードは正常に動作します。上記のリンクを使用します(取得したい株式が1つしかないため、つまりGOOG)が、最後にさらにいくつかの株式シンボルを追加しようとすると
{
<?php
<?php $url="http://finance.google.com/finance/info?client=ig&q=GOOG,AAPL,MAC "
/* (here I'm trying to get data for 3 stocks (i.e GOOG, AAPL, MAC)
it generates the JSON but I'm unable to change it into proper Array.*/
$g_f_data= file_get_contents($url);
$json = str_replace("\n", "", $g_f_data);
$data = substr($json, 4, strlen($json) -5);
$json_output = json_decode($data, true);
echo"<pre>";
print_r ($json_output);
echo"</pre>";
echo $json_output['t'],$json_output['l'],$json_output['cp'];echo "<br />";
?>
}