timezone_version_get

(PHP 5 >= 5.3.0, PHP 7) Gets the version of the timezonedb string timezone_version_get ( void ) Returns the current version of the timezonedb. Returns: Returns a string. Examples: Getting the timezonedb version <?php echo timezone_version_get(); ?> The above example will output something similar to: 2009.7

timezone_transitions_get

(PHP 5 >= 5.2.0, PHP 7) Alias of DateTimeZone::getTransitions() This function is an alias of: DateTimeZone::getTransitions()

timezone_open

(PHP 5 >= 5.2.0, PHP 7) Alias of DateTimeZone::__construct() This function is an alias of: DateTimeZone::__construct()

timezone_offset_get

(PHP 5 >= 5.2.0, PHP 7) Alias of DateTimeZone::getOffset() This function is an alias of: DateTimeZone::getOffset()

timezone_name_get

(PHP 5 >= 5.2.0, PHP 7) Alias of DateTimeZone::getName() This function is an alias of: DateTimeZone::getName()

timezone_name_from_abbr

(PHP 5 >= 5.1.3, PHP 7) Returns the timezone name from abbreviation string timezone_name_from_abbr ( string $abbr [, int $gmtOffset = -1 [, int $isdst = -1 ]] ) Parameters: abbr Time zone abbreviation. gmtOffset Offset from GMT in seconds. Defaults to -1 which means that first found time zone corresponding to abbr is returned. Otherw

timezone_location_get

(PHP 5 >= 5.3.0, PHP 7) Alias of DateTimeZone::getLocation() This function is an alias of: DateTimeZone::getLocation()

timezone_identifiers_list

(PHP 5 >= 5.2.0, PHP 7) Alias of DateTimeZone::listIdentifiers() This function is an alias of: DateTimeZone::listIdentifiers()

timezone_abbreviations_list

(PHP 5 >= 5.2.0, PHP 7) Alias of DateTimeZone::listAbbreviations() This function is an alias of: DateTimeZone::listAbbreviations()

time

(PHP 4, PHP 5, PHP 7) Return current Unix timestamp int time ( void ) Returns the current time measured in the number of seconds since the Unix Epoch (January 1 1970 00:00:00 GMT). Examples: time() example <?php $nextWeek = time() + (7 * 24 * 60 * 60);                    // 7 days; 24 hours; 60 mins; 60 secs echo 'Now:       '. date('Y-