Bu işlevi kullandığınızda, ve adres olarak o kullanıcının yerini "Perth, WA, Avustralya" geçebileceği.
Bunun yerine başarısızlık 0 döndürmek, bu sunucu timezone ve varsayılan php timezone arasında ofset dönmek olabilir.
Eğer sayfa işler hızını artıracak olan, bir oturum değişkeni bu depolamak isteyen ve değişken boşsa, yalnızca işlevini çağırabilir.
/**
* This function finds the geocode of any given place using the geocoding service of yahoo
* @example getGeoCode("White House, Washington");
* @example getGeoCode("Machu Pichu");
* @example getGeoCode("Dhaka");
* @example getGeoCode("Hollywood");
*
* @param string address - something you could type into Yahoo Maps and get a valid result
* @return int timeZoneOffset - the number of seconds difference between the user's timezone and your server's timezone, 0 if it fails.
*/
function getTimeZoneOffset($address) {
$_url = 'http://api.local.yahoo.com/MapsService/V1/geocode';
$_url .= sprintf('?appid=%s&location=%s',"phpclasses",rawurlencode($address));
$_result = false;
if($_result = file_get_contents($_url)) {
preg_match('!<Latitude>(.*)</Latitude><Longitude>(.*)</Longitude>!U', $_result, $_match);
$lng = $_match[2];
$lat = $_match[1];
$url = "http://ws.geonames.org/timezone?lat={$lat}&lng={$lng}";
$timedata = file_get_contents($url);
$sxml = simplexml_load_string($timedata);
$timeZoneOffset = strtotime($sxml->timezone->time) - time();
return $timeZoneOffset;
}
else
return 0;
}
Time Engine, bir LGPL php sınıftan uyarlanmış Kodu.