Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Aaron Parecki 3edd2fd7c4 Create CONTRIBUTING.md vor 7 Jahren
src/p3k first commit vor 7 Jahren
CONTRIBUTING.md Create CONTRIBUTING.md vor 7 Jahren
LICENSE first commit vor 7 Jahren
README.md first commit vor 7 Jahren
composer.json first commit vor 7 Jahren

README.md

Timezone

This library provides a function for retrieving the timezone for a given location.

It is implemented as a single file with no external dependencies. To do this, a horrible cheat is used. The timezone for a location is found by looking up the timezone of the nearest city. This means it's possible that the wrong timezone will be returned for locations near the borders between timezones, so you should only use this library if that is an acceptable compromise. The tradeoff is no fancy geometry or databases are required so this is comparatively fast.

API

$timezone = p3k\Timezone::timezone_for_location($latitude, $longitude);

Returns a string with the timezone name such as "Europe/Berlin", which can be used to create a new DateTimeZone object.