PHP code example of nehero / friendlytimezone
1. Go to this page and download the library: Download nehero/friendlytimezone library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
nehero / friendlytimezone example snippets
// Illuminate\Support\Collection of Nehero\Timezone
$timezones = Nehero\FriendlyTimezone\FriendlyTimezone::timezones();
// properties available to you
foreach ($timezones as $timezone) {
echo $timezone->friendlyName; // Saskatchewan (string)
echo $timezone->timezone; // America/Regina (string)
echo $timezone->offset; // -6 (int|float)
echo $timezone->getFormattedOffset(); // -6:00 (string)
}
// common formatting for dropdowns
$timezones->map(fn ($tz) => [
'label' => "(UTC{$tz->getFormattedOffset()}) {$tz->friendlyName}"), // (UTC+6:00) Saskatchewan
'value' => $tz->timezone, // America/Regina
]);
// need it in descending order?
// can manipulate it however you want with
// common collection or native array/iterable functions
$timezones->sortByDesc(fn ($tz) => $tz->offset)->map(...);