/PHP-7.1/ext/date/tests/ |
H A D | timezone_abbreviations_list_basic1.phpt | 16 $abbr = timezone_abbreviations_list(); 18 var_dump( gettype($abbr) ); 19 var_dump( count($abbr) ); 22 var_dump( $abbr["acst"] );
|
H A D | DateTimeZone_listAbbreviations_basic1.phpt | 16 $abbr = DateTimeZone::listAbbreviations(); 18 var_dump( gettype($abbr) ); 19 var_dump( count($abbr) ); 22 var_dump( $abbr["acst"] );
|
H A D | timezone_name_from_abbr_error.phpt | 5 /* Prototype : string timezone_name_from_abbr ( string $abbr [, int $gmtOffset= -1 [, int $isds… 22 $abbr = 10; 26 var_dump( timezone_name_from_abbr($abbr, $gmtOffset, $isdst, $extra_arg) );
|
H A D | timezone_name_from_abbr_variation1.phpt | 2 …ne_name_from_abbr() function : usage variation - Passing unexpected values to first argument $abbr. 5 /* Prototype : string timezone_name_from_abbr ( string $abbr [, int $gmtOffset= -1 [, int $isds… 11 …ng timezone_name_from_abbr() : usage variation - unexpected values to first argument \$abbr***\n"; 100 foreach($inputs as $variation =>$abbr) { 102 var_dump( timezone_name_from_abbr($abbr, $gmtOffset, $isdst) ); 111 …Testing timezone_name_from_abbr() : usage variation - unexpected values to first argument $abbr***
|
H A D | bug48058.phpt | 26 ["abbr"]=>
|
H A D | timezone_name_from_abbr_variation3.phpt | 5 /* Prototype : string timezone_name_from_abbr ( string $abbr [, int $gmtOffset= -1 [, int $isds… 97 $abbr= "GMT"; 102 var_dump( timezone_name_from_abbr($abbr, $gmtOffset, $isdst) );
|
H A D | timezone_name_from_abbr_variation2.phpt | 5 /* Prototype : string timezone_name_from_abbr ( string $abbr [, int $gmtOffset= -1 [, int $isds… 97 $abbr= "GMT"; 102 var_dump( timezone_name_from_abbr($abbr, $gmtOffset, $isdst) );
|
H A D | DateTimeZone_getTransitions_basic1.phpt | 47 ["abbr"]=>
|
H A D | timezone_transitions_get_basic1.phpt | 50 ["abbr"]=>
|
H A D | timezone_name_from_abbr_basic1.phpt | 5 /* Prototype : string timezone_name_from_abbr ( string $abbr [, int $gmtOffset= -1 [, int $isds…
|
/PHP-7.1/ext/date/lib/ |
H A D | unixtime2tm.c | 208 timelib_time_tz_abbr_update(tm, gmt_offset->abbr); in timelib_unixtime2local() 241 t->tz_abbr = timelib_strdup(abbr_info.abbr); in timelib_set_timezone_from_abbr() 267 t->tz_abbr = timelib_strdup(gmt_offset->abbr); in timelib_set_timezone()
|
H A D | parse_tz.c | 484 char *abbr; in timelib_get_time_zone_info() local 490 abbr = &(tz->timezone_abbr[to->abbr_idx]); in timelib_get_time_zone_info() 495 abbr = tz->timezone_abbr; in timelib_get_time_zone_info() 506 tmp->abbr = abbr ? timelib_strdup(abbr) : timelib_strdup("GMT"); in timelib_get_time_zone_info()
|
H A D | timelib_structs.h | 236 char *abbr; member 264 char *abbr; member
|
H A D | timelib.h | 90 char *timelib_timezone_id_from_abbr(const char *abbr, timelib_long gmtoffset, int isdst);
|
H A D | timelib.c | 125 TIMELIB_TIME_FREE(t->abbr); in timelib_time_offset_dtor()
|
H A D | tm2unixtime.c | 455 tz->tz_abbr = timelib_strdup(gmt_offset->abbr); in do_adjust_timezone()
|
H A D | parse_date.re | 2269 char *timelib_timezone_id_from_abbr(const char *abbr, timelib_long gmtoffset, int isdst) 2273 tp = abbr_search(abbr, gmtoffset, isdst);
|
H A D | parse_date.c | 25375 char *timelib_timezone_id_from_abbr(const char *abbr, timelib_long gmtoffset, int isdst) in timelib_timezone_id_from_abbr() argument 25379 tp = abbr_search(abbr, gmtoffset, isdst); in timelib_timezone_id_from_abbr()
|
/PHP-7.1/ext/date/ |
H A D | php_date.c | 328 ZEND_ARG_INFO(0, abbr) 1112 offset->abbr = timelib_strdup(t->tz_abbr); in date_format() 1119 snprintf(offset->abbr, 9, "GMT%c%02d%02d", in date_format() 1322 offset->abbr = timelib_strdup(t->tz_abbr); in php_idate() 1681 ta.tm_zone = offset->abbr; in php_strftime() 2333 new_obj->tzi.z.abbr = timelib_strdup(old_obj->tzi.z.abbr); in date_object_clone_timezone() 2374 ZVAL_STRING(&zv, tzobj->tzi.z.abbr); in date_object_get_properties_timezone() 2413 ZVAL_STRING(&zv, tzobj->tzi.z.abbr); in date_object_get_debug_info_timezone() 2570 timelib_free(intern->tzi.z.abbr); in date_object_free_storage_timezone() 3931 RETURN_STRING(tzobj->tzi.z.abbr); in PHP_FUNCTION() [all …]
|
/PHP-7.1/ext/intl/common/ |
H A D | common_date.cpp | 82 : ((php_timezone_obj*)object)->tzi.z.abbr;
|