以下来自另一个问题:Handling data in a PHP JSON Object:
$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($jsonurl,0,null,null)
file_get_contents($jsonurl)
我检查了file_get_contents()
PHP 手册,但仍然不完全理解它,换句话说,如果我使用这一行:
file_get_contents($jsonurl)
会发生什么?