1
以下是從另一個問題:Handling data in a PHP JSON Object:問題與JSON的file_get_contents取
$jsonurl = "http://search.twitter.com/trends.json";
$json = file_get_contents($jsonurl, 0, null, null);
$json_output = json_decode($json);
foreach ($json_output->trends as $trend)
{
echo "{$trend->name}\n";
}
我的問題:什麼是這兩個之間的區別:我檢查file_get_contents()
PHP manual
file_get_contents($jsonurl,0,null,null)
file_get_contents($jsonurl)
,但仍然不完全瞭解它,換句話說,如果我使用這條線:
file_get_contents($jsonurl)
會發生什麼?