Searched refs:ta (Results 1 - 8 of 8) sorted by relevance
| /PHP_5_5/ |
| H A D | server-tests.php | 730 $ta = strpos($a, "{$this->cwd}/tests")===0 ? 1 + (strpos($a, "{$this->cwd}/tests/run-test")===0 ? 1 : 0) : 0; variable 732 if ($ta == $tb) { 735 return $tb - $ta;
|
| H A D | run-tests.php | 914 $ta = strpos($a, "{$cwd}/tests") === 0 ? 1 + (strpos($a, "{$cwd}/tests/run-test") === 0 ? 1 : 0) : 0; variable 917 if ($ta == $tb) { 920 return $tb - $ta;
|
| /PHP_5_5/ext/calendar/ |
| H A D | cal_unix.c | 32 struct tm *ta, tmbuf; local 44 if (!(ta = php_localtime_r(&ts, &tmbuf))) { 48 RETURN_LONG(GregorianToSdn(ta->tm_year+1900, ta->tm_mon+1, ta->tm_mday));
|
| /PHP_5_5/ext/soap/ |
| H A D | php_encoding.c | 2977 struct tm *ta, tmbuf; local 2992 ta = php_localtime_r(×tamp, &tmbuf); 2993 /*ta = php_gmtime_r(×tamp, &tmbuf);*/ 2994 if (!ta) { 2999 while ((real_len = strftime(buf, buf_len, format, ta)) == buf_len || real_len == 0) { 3007 snprintf(tzbuf, sizeof(tzbuf), "%c%02d:%02d", (ta->tm_gmtoff < 0) ? '-' : '+', abs(ta->tm_gmtoff / 3600), abs( (ta->tm_gmtoff % 3600) / 60 )); 3010 snprintf(tzbuf, sizeof(tzbuf), "%c%02d:%02d", ((ta->tm_isdst ? _timezone - 3600:_timezone)>0)?'-':'+', abs((ta [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | info.c | 680 struct tm *ta, tmbuf; local 683 ta = php_localtime_r(&the_time, &tmbuf); 686 if (ta && (ta->tm_mon==3) && (ta->tm_mday==1)) {
|
| /PHP_5_5/ext/opcache/ |
| H A D | zend_accelerator_module.c | 459 struct tm *ta; local 484 ta = localtime(&script->dynamic_members.last_used); 485 str = asctime(ta);
|
| /PHP_5_5/ext/date/ |
| H A D | php_date.c | 1615 struct tm ta; local 1642 ta.tm_sec = ts->s; 1643 ta.tm_min = ts->i; 1644 ta.tm_hour = ts->h; 1645 ta.tm_mday = ts->d; 1646 ta.tm_mon = ts->m - 1; 1647 ta.tm_year = ts->y - 1900; 1648 ta.tm_wday = timelib_day_of_week(ts->y, ts->m, ts->d); 1649 ta.tm_yday = timelib_day_of_year(ts->y, ts->m, ts->d); 1651 ta [all...] |
| /PHP_5_5/main/ |
| H A D | main.c | 1440 struct tm *ta, tmbuf; local 1446 ta = php_localtime_r(&curtime, &tmbuf); 1447 datetime_str = php_asctime_r(ta, asctimebuf);
|
Completed in 32 milliseconds