beecubu/timezone

Simple TimeZone PHP library (based on Scott Connerly timezone library).

v0.3 2020-11-05 12:47 UTC

This package is auto-updated.

Last update: 2025-03-05 21:59:50 UTC


README

Creating a time zone select in PHP can get unruly quickly, as DateTimeZone::listIdentifiers() returns over 415 Zones and Links, allowing for 'priority_zones' to be at the top of the list.

Screenshot of timezone select

Example:

echo TimeZoneSelect::get_select(['country'=>'US']);

Simple demo avaiable: http://scott.connerly.net/TimeZone/example.php

Available args w/ default values:

[
    'country'        => '',          //ISO-3116 2-letter country code
    'priority_zones' => [],          //If you want to specify a list of zones that aren't country-specific
    'priority_label' => 'Regional',  //The label of the optgroup for the priority zones

    'selected'       => '',          //which option is selected
    
    'name'           => 'time_zone', //name for the <select>
    'class'          => '',          //class for the <select>
    'id'             => '',          //id for the <select>
    'data'           => [],          //list of data attributes to add to the <select>
]