タイムゾーンを取得するために、次のコード php を使用しています。
$url = 'http://api.geonames.org/timezone?lat=' . $latitude . '&lng=' . $longitude . '&username=demo';
$xml = simplexml_load_file($url);
foreach($xml->children() as $timezone)
{
echo "TimezoneId: ".$timezone->timezoneId." ";
echo "DstOffset : ".$timezone->dstOffset." ";
echo "GmtOffset : ".$timezone->gmtOffset." ";
}
動作しますが、たとえば南極大陸の緯度と経度の場合、エラーステータスメッセージが表示されます:
<status message="no timezone information found for lat/lng" value="15"/>
このメッセージをエコーする方法は?
私はこれを試しています:
if ($xml->status) {
echo "error: ".$timezone->status['message']. "";
}
しかし、動作しません