Searched refs:tm1 (Results 1 – 3 of 3) sorted by relevance
56 struct tm *tm1, tmbuf; in php_std_date() local59 tm1 = php_gmtime_r(&t, &tmbuf); in php_std_date()63 if (!tm1) { in php_std_date()68 day_short_names[tm1->tm_wday], in php_std_date()69 tm1->tm_mday, in php_std_date()70 mon_short_names[tm1->tm_mon], in php_std_date()71 tm1->tm_year + 1900, in php_std_date()72 tm1->tm_hour, tm1->tm_min, tm1->tm_sec); in php_std_date()
102 struct tm *tm1; in file_fmttime() local104 tm1 = localtime(&now); in file_fmttime()105 if (tm1 == NULL) in file_fmttime()107 daylight = tm1->tm_isdst; in file_fmttime()
3115 + struct tm *tm1;3117 + tm1 = localtime(&now);3118 + if (tm1 == NULL)3120 + daylight = tm1->tm_isdst;
Completed in 11 milliseconds