Searched defs:localtime (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_4/ext/intl/doc/ |
| H A D | datefmt_api.php | 88 * array: a localtime array - uses 24 hour clock in tm_hour field 119 * @return array localtime compatible array of integers - uses 24 hour clock in tm_hour field 121 public function localtime($value, $parse_pos=0) {} function 270 * array: a localtime array - uses 24 hour clock in tm_hour field 303 * @return array localtime compatible array of integers - uses 24 hour clock in tm_hour field
|
| /PHP_5_4/ext/date/lib/ |
| H A D | unixtime2tm.c | 242 /* Converts the time stored in the struct to localtime if localtime = true, 245 int timelib_apply_localtime(timelib_time *t, unsigned int localtime) argument 247 if (localtime) {
|
| /PHP_5_4/ext/date/ |
| H A D | php_date.c | 397 PHP_FE(localtime, arginfo_localtime) 997 static char *date_format(char *format, int format_len, timelib_time *t, int localtime) argument 1011 if (localtime) { 1025 localtime ? ((offset->offset < 0) ? '-' : '+') : '+', 1026 localtime ? abs(offset->offset / 3600) : 0, 1027 localtime ? abs((offset->offset % 3600) / 60) : 0 ); 1087 case 'I': length = slprintf(buffer, 32, "%d", localtime ? offset->is_dst : 0); break; 1090 localtime ? ((offset->offset < 0) ? '-' : '+') : '+', 1091 localtime ? abs(offset->offset / 3600) : 0, 1093 localtime 1155 php_date(INTERNAL_FUNCTION_PARAMETERS, int localtime) argument [all...] |
| H A D | php_date.h | 46 PHP_FUNCTION(localtime); variable 171 PHPAPI int php_idate(char format, time_t ts, int localtime TSRMLS_DC); 176 PHPAPI char *php_format_date(char *format, int format_len, time_t ts, int localtime TSRMLS_DC);
|
| /PHP_5_4/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 11064 int bLocaltimeFault; /* True to fail localtime() calls */ 13541 ** using whatever operating-system specific localtime facility that 13555 pX = localtime(t); 13579 ** Compute the difference (in milliseconds) between localtime and UTC 13652 ** localtime 13656 ** is in a system call (i.e. localtime()), then an error message is written 13673 /* localtime 13678 if( strcmp(z, "localtime")==0 ){ 31836 struct tm *__cdecl localtime(const time_t *t) function [all...] |
Completed in 199 milliseconds