Searched refs:is_dst (Results 1 – 18 of 18) sorted by relevance
/PHP-5.4/ext/date/tests/ |
H A D | mktime_variation7.phpt | 106 foreach($inputs as $variation =>$is_dst) { 124 Deprecated: mktime(): The is_dst parameter is deprecated in %s on line %d 129 Deprecated: mktime(): The is_dst parameter is deprecated in %s on line %d 134 Deprecated: mktime(): The is_dst parameter is deprecated in %s on line %d 139 Deprecated: mktime(): The is_dst parameter is deprecated in %s on line %d 144 Deprecated: mktime(): The is_dst parameter is deprecated in %s on line %d 169 Deprecated: mktime(): The is_dst parameter is deprecated in %s on line %d 174 Deprecated: mktime(): The is_dst parameter is deprecated in %s on line %d 179 Deprecated: mktime(): The is_dst parameter is deprecated in %s on line %d 184 Deprecated: mktime(): The is_dst parameter is deprecated in %s on line %d [all …]
|
H A D | mktime_basic1.phpt | 5 …t $month= date("n") [, int $day= date("j") [, int $year= date("Y") [, int $is_dst= -1 ]]]]]]] ) 23 $is_dst = 0; 31 var_dump( mktime($hour, $minute, $sec, $month, $day, $year, $is_dst) ); 44 Deprecated: mktime(): The is_dst parameter is deprecated in %s on line %d
|
H A D | mktime_error.phpt | 5 …t $month= date("n") [, int $day= date("j") [, int $year= date("Y") [, int $is_dst= -1 ]]]]]]] ) 27 $is_dst = 0; 29 var_dump( mktime($hour, $minute, $sec, $month, $day, $year, $is_dst, $extra_arg) );
|
H A D | date_parse_001.phpt | 108 ["is_dst"]=> 232 ["is_dst"]=> 268 ["is_dst"]=>
|
H A D | bug35499.phpt | 46 ["is_dst"]=>
|
H A D | gmmktime_error.phpt | 34 Deprecated: gmmktime(): The is_dst parameter is deprecated in %s on line %d
|
H A D | mktime_variation1.phpt | 5 …t $month= date("n") [, int $day= date("j") [, int $year= date("Y") [, int $is_dst= -1 ]]]]]]] ) 103 $is_dst = 0;
|
H A D | mktime_variation3.phpt | 5 …t $month= date("n") [, int $day= date("j") [, int $year= date("Y") [, int $is_dst= -1 ]]]]]]] )
|
H A D | mktime_variation4.phpt | 5 …t $month= date("n") [, int $day= date("j") [, int $year= date("Y") [, int $is_dst= -1 ]]]]]]] )
|
H A D | mktime_variation5.phpt | 5 …t $month= date("n") [, int $day= date("j") [, int $year= date("Y") [, int $is_dst= -1 ]]]]]]] )
|
H A D | mktime_variation2.phpt | 5 …t $month= date("n") [, int $day= date("j") [, int $year= date("Y") [, int $is_dst= -1 ]]]]]]] )
|
H A D | mktime_variation6.phpt | 5 …t $month= date("n") [, int $day= date("j") [, int $year= date("Y") [, int $is_dst= -1 ]]]]]]] )
|
/PHP-5.4/ext/date/lib/ |
H A D | unixtime2tm.c | 199 tm->dst = gmt_offset->is_dst; in timelib_unixtime2local() 257 t->dst = gmt_offset->is_dst; in timelib_set_timezone()
|
H A D | timelib_structs.h | 148 unsigned int is_dst; member
|
H A D | parse_tz.c | 418 tmp->is_dst = to->isdst; in timelib_get_time_zone_info() 423 tmp->is_dst = 0; in timelib_get_time_zone_info()
|
H A D | tm2unixtime.c | 416 tz->dst = gmt_offset->is_dst; in do_adjust_timezone()
|
/PHP-5.4/ext/standard/ |
H A D | microtime.c | 80 add_assoc_long(return_value, "dsttime", offset->is_dst); in _php_gettimeofday()
|
/PHP-5.4/ext/date/ |
H A D | php_date.c | 1028 offset->is_dst = t->dst; in date_format() 1034 offset->is_dst = 0; in date_format() 1099 case 'I': length = slprintf(buffer, 32, "%d", localtime ? offset->is_dst : 0); break; in date_format() 1239 offset->is_dst = t->dst; in php_idate() 1245 offset->is_dst = t->dst; in php_idate() 1293 case 'I': retval = (int) (!localtime ? offset->is_dst : 0); break; in php_idate() 1524 if (dst == 1 && tmp_offset->is_dst == 0) { in php_mktime() 1527 if (dst == 0 && tmp_offset->is_dst == 1) { in php_mktime() 1633 ta.tm_isdst = offset->is_dst; in php_strftime()
|
Completed in 62 milliseconds