此问题仅在第一次调用时发生。第二次,没有错误,没有问题。每天调用一次以更新货币汇率。
private function updateRates()
{
$szContent = file_get_contents(self::OPT_URL);
if(!$szContent)
{
throw new Exception('XML resource unavailable.');
}
$pXML = new SimpleXMLElement($szContent);
$aRates = array();
foreach($pXML->Cube->Cube->Cube as $pChildren)
{
$aRates[(string) $pChildren['currency']] = (float) $pChildren['rate'];
}
$pFile = fopen(self::OPT_FILE, 'w+');
fwrite($pFile, json_encode($aRates));
fclose($pFile);
touch($pFile);
}