我試圖這樣做通過谷歌財經
訪問股票行情:
$quote = file_get_contents('http://finance.google.com/finance/info?client=ig&q=VSE:APG1L');
$json = str_replace("\n", "", $quote);
$data = substr($json, 4, strlen($json) -5);
print_r($data);
$json_output = json_decode($data, true);
print_r($json_output);
echo "\n".$json_output['l'];
json_decode
想給我的鑰匙和值的普通陣列,但它不。
這是什麼給你呢? – 2013-04-04 12:38:44