Query: timezone_name_from_abbr
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
TIMEZONE_NAME_FROM_ABBR(3) 1 TIMEZONE_NAME_FROM_ABBR(3) timezone_name_from_abbr - Returns the timezone name from abbreviationSYNOPSISstring timezone_name_from_abbr (string $abbr, [int $gmtOffset = -1], [int $isdst = -1])DESCRIPTIONPARAMETERSo $abbr - Time zone abbreviation. o $gmtOffset - Offset from GMT in seconds. Defaults to -1 which means that first found time zone corresponding to $abbr is returned. Otherwise exact offset is searched and only if not found then the first time zone with any offset is returned. o $isdst - Daylight saving time indicator. Defaults to -1, which means that whether the time zone has daylight saving or not is not taken into consideration when searching. If this is set to 1, then the $gmtOffset is assumed to be an offset with daylight saving in effect; if 0, then $gmtOffset is assumed to be an offset without daylight saving in effect. If $abbr doesn't exist then the time zone is searched solely by the $gmtOffset and $isdst.RETURN VALUESReturns time zone name on success or FALSE on failure.EXAMPLESExample #1 A timezone_name_from_abbr(3) example <?php echo timezone_name_from_abbr("CET") . " "; echo timezone_name_from_abbr("", 3600, 0) . " "; ?> The above example will output something similar to: Europe/Berlin Europe/ParisSEE ALSOtimezone_abbreviations_list(3). PHP Documentation Group TIMEZONE_NAME_FROM_ABBR(3)
Related Man Pages |
---|
timezone(5) - hpux |
datetime::timezone::olsondb5.18(3) - mojave |
datetime::timezone::olsondb(3) - mojave |
datefmt_set_timezone(3) - php |
geoip_time_zone_by_country_and_region(3) - php |
Similar Topics in the Unix Linux Community |
---|
Failed to concatenate parameter in k-shell |
disable daylight saving |
changing time zone from ist to bst |
grep exact string from a file |
Sorting arrays horizontally without END section, awk |