Home
last modified time | relevance | path

Searched refs:isdst (Results 1 – 14 of 14) sorted by relevance

/PHP-7.3/ext/date/tests/
H A Dtimezone_name_from_abbr_error.phpt5 …e : string timezone_name_from_abbr ( string $abbr [, int $gmtOffset= -1 [, int $isdst= -1 ]] )
22 $isdst = 45;
24 var_dump( timezone_name_from_abbr($abbr, $gmtOffset, $isdst, $extra_arg) );
H A Dtimezone_name_from_abbr_basic1.phpt5 …e : string timezone_name_from_abbr ( string $abbr [, int $gmtOffset= -1 [, int $isdst= -1 ]] )
28 echo "-- Tests without valid name - uses gmtOffset and isdst to find match --\n";
50 -- Tests without valid name - uses gmtOffset and isdst to find match --
H A Dtimezone_name_from_abbr_variation3.phpt2 …e_name_from_abbr() function : usage variation - Passing unexpected values to third argument $isdst.
5 …e : string timezone_name_from_abbr ( string $abbr [, int $gmtOffset= -1 [, int $isdst= -1 ]] )
11 …g timezone_name_from_abbr() : usage variation - unexpected values to third argument \$isdst***\n";
100 foreach($inputs as $variation =>$isdst) {
102 var_dump( timezone_name_from_abbr($abbr, $gmtOffset, $isdst) );
111 …esting timezone_name_from_abbr() : usage variation - unexpected values to third argument $isdst***
H A Dbug48058.phpt24 ["isdst"]=>
H A Dtimezone_name_from_abbr_variation1.phpt5 …e : string timezone_name_from_abbr ( string $abbr [, int $gmtOffset= -1 [, int $isdst= -1 ]] )
98 $isdst = 1;
102 var_dump( timezone_name_from_abbr($abbr, $gmtOffset, $isdst) );
H A Dtimezone_name_from_abbr_variation2.phpt5 …e : string timezone_name_from_abbr ( string $abbr [, int $gmtOffset= -1 [, int $isdst= -1 ]] )
98 $isdst = 1;
102 var_dump( timezone_name_from_abbr($abbr, $gmtOffset, $isdst) );
H A DDateTimeZone_getTransitions_basic1.phpt45 ["isdst"]=>
H A Dtimezone_transitions_get_basic1.phpt48 ["isdst"]=>
/PHP-7.3/ext/date/lib/
H A Dtimelib_private.h108 int isdst; member
H A Dparse_tz.c239 tz->type[i].isdst = buffer[j + 4]; in read_64bit_types()
390 tz->type[0].isdst, in timelib_dump_tzinfo()
400 tz->type[tz->trans_idx[i]].isdst, in timelib_dump_tzinfo()
657 return to->isdst; in timelib_timestamp_is_in_dst()
674 tmp->is_dst = to->isdst; in timelib_get_time_zone_info()
H A Dtimelib.h534 char *timelib_timezone_id_from_abbr(const char *abbr, timelib_long gmtoffset, int isdst);
H A Dparse_date.re672 …tic const timelib_tz_lookup_table* abbr_search(const char *word, timelib_long gmtoffset, int isdst)
701 * offset/isdst then */
703 if (fmp->gmtoffset == gmtoffset && fmp->type == isdst) {
2477 char *timelib_timezone_id_from_abbr(const char *abbr, timelib_long gmtoffset, int isdst)
2481 tp = abbr_search(abbr, gmtoffset, isdst);
H A Dparse_date.c674 …tic const timelib_tz_lookup_table* abbr_search(const char *word, timelib_long gmtoffset, int isdst) in abbr_search() argument
705 if (fmp->gmtoffset == gmtoffset && fmp->type == isdst) { in abbr_search()
22793 char *timelib_timezone_id_from_abbr(const char *abbr, timelib_long gmtoffset, int isdst) in timelib_timezone_id_from_abbr() argument
22797 tp = abbr_search(abbr, gmtoffset, isdst); in timelib_timezone_id_from_abbr()
/PHP-7.3/ext/date/
H A Dphp_date.c350 ZEND_ARG_INFO(0, isdst)
3964 zend_long isdst = -1; in PHP_FUNCTION() local
3970 Z_PARAM_LONG(isdst) in PHP_FUNCTION()
3973 tzid = timelib_timezone_id_from_abbr(ZSTR_VAL(abbr), gmtoffset, isdst); in PHP_FUNCTION()
4041 add_assoc_bool(&element, "isdst", tzobj->tzi.tz->type[0].isdst); \ in PHP_FUNCTION()
4050 add_assoc_bool(&element, "isdst", tzobj->tzi.tz->type[tzobj->tzi.tz->trans_idx[i]].isdst); \ in PHP_FUNCTION()

Completed in 68 milliseconds