Searched refs:is_dst (Results 1 – 7 of 7) sorted by relevance
/PHP-8.3/ext/date/tests/ |
H A D | date_parse_001.phpt | 107 ["is_dst"]=> 231 ["is_dst"]=> 267 ["is_dst"]=>
|
H A D | bug35499.phpt | 46 ["is_dst"]=>
|
/PHP-8.3/ext/date/lib/ |
H A D | unixtime2tm.c | 145 tm->dst = gmt_offset->is_dst; in timelib_unixtime2local() 203 t->dst = gmt_offset->is_dst; in timelib_set_timezone()
|
H A D | parse_tz.c | 893 tmp->is_dst = to->isdst; in timelib_get_time_zone_info() 898 tmp->is_dst = 0; in timelib_get_time_zone_info() 913 …ib_sll ts, timelib_tzinfo *tz, int32_t* offset, timelib_sll* transition_time, unsigned int* is_dst) in timelib_get_time_zone_offset_info() argument 926 if (is_dst) { in timelib_get_time_zone_offset_info() 927 *is_dst = to->isdst; in timelib_get_time_zone_offset_info()
|
H A D | timelib.h | 246 unsigned int is_dst; member 808 …b_sll ts, timelib_tzinfo *tz, int32_t* offset, timelib_sll* transition_time, unsigned int* is_dst);
|
/PHP-8.3/ext/standard/ |
H A D | microtime.c | 74 add_assoc_long(return_value, "dsttime", offset->is_dst); in _php_gettimeofday()
|
/PHP-8.3/ext/date/ |
H A D | php_date.c | 696 offset->is_dst = t->dst; in date_format() 702 offset->is_dst = 0; in date_format() 774 case 'I': length = slprintf(buffer, sizeof(buffer), "%d", localtime ? offset->is_dst : 0); break; in date_format() 919 offset->is_dst = t->dst; in php_idate() 925 offset->is_dst = t->dst; in php_idate() 976 case 'I': retval = (int) (!localtime ? offset->is_dst : 0); break; in php_idate() 1309 ta.tm_isdst = offset->is_dst; in php_strftime() 4139 add_assoc_bool(&element, "isdst", (to)->is_dst); \ in PHP_FUNCTION()
|
Completed in 44 milliseconds