Searched refs:gmt (Results 1 – 9 of 9) sorted by relevance
/PHP-5.5/ext/intl/tests/ |
H A D | timezone_useDaylightTime_basic.phpt | 11 $gmt = IntlTimeZone::getGMT(); 14 var_dump($gmt->useDaylightTime()); 17 var_dump(intltz_use_daylight_time($gmt));
|
H A D | timezone_clone_basic.phpt | 16 $gmt = IntlTimeZone::getGMT(); 17 print_r($gmt); 18 print_r(clone $gmt);
|
H A D | calendar_setTimeZone_error.phpt | 15 $gmt = IntlTimeZone::getGMT(); 22 var_dump($c->setTimeZone($gmt, 2)); 26 var_dump(intlcal_set_time_zone(1, $gmt));
|
/PHP-5.5/ext/standard/ |
H A D | ftp_fopen_wrapper.c | 835 struct tm tm, tmbuf, *gmt; in php_stream_ftp_url_stat() local 857 gmt = php_gmtime_r(&stamp, &tmbuf); in php_stream_ftp_url_stat() 858 if (!gmt) { in php_stream_ftp_url_stat() 861 gmt->tm_isdst = -1; in php_stream_ftp_url_stat() 864 tm.tm_sec += stamp - mktime(gmt); in php_stream_ftp_url_stat() 865 tm.tm_isdst = gmt->tm_isdst; in php_stream_ftp_url_stat()
|
/PHP-5.5/ext/ftp/ |
H A D | ftp.c | 988 struct tm *gmt, tmbuf; in ftp_mdtm() local 1014 gmt = php_gmtime_r(&stamp, &tmbuf); in ftp_mdtm() 1015 if (!gmt) { in ftp_mdtm() 1018 gmt->tm_isdst = -1; in ftp_mdtm() 1021 tm.tm_sec += stamp - mktime(gmt); in ftp_mdtm() 1022 tm.tm_isdst = gmt->tm_isdst; in ftp_mdtm()
|
/PHP-5.5/ext/date/ |
H A D | php_date.h | 182 PHPAPI void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gmt);
|
H A D | php_date.c | 1503 PHPAPI void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gmt) in php_mktime() argument 1516 if (gmt) { in php_mktime() 1555 if (gmt) { in php_mktime() 1563 if (gmt) { in php_mktime() 1629 PHPAPI void php_strftime(INTERNAL_FUNCTION_PARAMETERS, int gmt) in php_strftime() argument 1652 if (gmt) { in php_strftime() 1669 if (gmt) { in php_strftime() 1709 if (!gmt) { in php_strftime()
|
/PHP-5.5/ext/date/lib/ |
H A D | parse_date.re | 677 if (strcasecmp("utc", word) == 0 || strcasecmp("gmt", word) == 0) {
|
/PHP-5.5/ext/fileinfo/tests/ |
H A D | magic | 17574 >20 belong 0 \b, no gmt time flags 17575 >20 belong 1 \b, 1 gmt time flag 17576 >20 belong >1 \b, %d gmt time flags
|
Completed in 86 milliseconds