Searched defs:timestamp (Results 1 - 11 of 11) sorted by relevance
| /PHP_5_4/ext/intl/dateformat/ |
| H A D | dateformat_format.c | 35 static void internal_format(IntlDateFormatter_object *dfo, UDate timestamp, zval *return_value TSRMLS_DC) argument 40 resultlengthneeded=udat_format( DATE_FORMAT_OBJECT(dfo), timestamp, NULL, resultlengthneeded, NULL, &INTL_DATA_ERROR_CODE(dfo)); 45 udat_format( DATE_FORMAT_OBJECT(dfo), timestamp, formatted, resultlengthneeded, NULL, &INTL_DATA_ERROR_CODE(dfo)); local 81 * Internal function which sets UCalendar from the passed array and retrieves timestamp 116 /* Fetch the timestamp from the UCalendar */ 127 UDate timestamp =0; local 147 timestamp = p_timestamp * 1000; 150 /* timestamp*1000 since ICU expects it in milliseconds */ 152 timestamp = p_timestamp * 1000; 159 timestamp [all...] |
| H A D | dateformat_parse.c | 40 UDate timestamp =0; local 48 timestamp = udat_parse( DATE_FORMAT_OBJECT(dfo), text_utf16, text_utf16_len, parse_pos, &INTL_DATA_ERROR_CODE(dfo)); 56 result = (double)timestamp / U_MILLIS_PER_SECOND; 125 * Parse the string $value starting at parse_pos to a Unix timestamp -int }}}*/ 127 * Parse the string $value starting at parse_pos to a Unix timestamp -int }}}*/
|
| /PHP_5_4/ext/com_dotnet/ |
| H A D | com_variant.c | 908 Converts a variant date/time value to unix timestamp */ 946 /* {{{ proto object variant_date_from_timestamp(int timestamp) 947 Returns a variant date representation of a unix timestamp */ 950 long timestamp; local 957 ×tamp)) { 961 if (timestamp < 0) { 968 ttstamp = timestamp;
|
| /PHP_5_4/ext/date/lib/ |
| H A D | astro.c | 179 * Note: timestamp = unixtimestamp (NEEDS to be 00:00:00 UT) 218 timelib_sll timestamp, old_sse; local 237 timestamp = t_loc->sse; 238 d = timelib_ts_to_juliandate(timestamp) - lon/360.0;
|
| /PHP_5_4/ext/oci8/ |
| H A D | oci8.c | 1765 time_t timestamp; local 1880 timestamp = time(NULL); 1959 if (!ping_done && (*(connection->next_pingp) > 0) && (timestamp >= *(connection->next_pingp)) && !php_oci_connection_ping(connection TSRMLS_CC)) { 2090 connection->idle_expiry = (OCI_G(persistent_timeout) > 0) ? (timestamp + OCI_G(persistent_timeout)) : 0; 2348 time_t timestamp = time(NULL); local 2369 connection->idle_expiry = timestamp + OCI_G(persistent_timeout); 2375 *(connection->next_pingp) = timestamp + OCI_G(ping_interval); 2681 time_t timestamp; local 2684 timestamp = time(NULL); 2694 if (connection->idle_expiry < timestamp) { 3122 time_t timestamp = time(NULL); local 3339 time_t timestamp = time(NULL); local [all...] |
| /PHP_5_4/ext/soap/ |
| H A D | php_encoding.c | 2987 time_t timestamp; local 3000 timestamp = Z_LVAL_P(data); 3001 ta = php_localtime_r(×tamp, &tmbuf); 3002 /*ta = php_gmtime_r(×tamp, &tmbuf);*/ 3004 soap_error1(E_ERROR, "Encoding: Invalid timestamp %ld", Z_LVAL_P(data));
|
| /PHP_5_4/ext/xmlrpc/ |
| H A D | xmlrpc-epi-php.c | 243 #define OBJECT_VALUE_TS_ATTR "timestamp" 1369 time_t timestamp = (time_t) php_parse_date((char *)XMLRPC_GetValueDateTime_ISO8601(v), NULL); local 1370 if (timestamp != -1) { 1376 ztimestamp->value.lval = timestamp;
|
| /PHP_5_4/main/streams/ |
| H A D | memory.c | 202 time_t timestamp = 0; local 215 ssb->sb.st_mtime.tv_sec = timestamp; 216 ssb->sb.st_atime.tv_sec = timestamp; 217 ssb->sb.st_ctime.tv_sec = timestamp; 219 ssb->sb.st_mtime = timestamp; 220 ssb->sb.st_atime = timestamp; 221 ssb->sb.st_ctime = timestamp;
|
| /PHP_5_4/ext/phar/ |
| H A D | phar_internal.h | 255 php_uint32 timestamp; member in struct:_phar_entry_info
|
| H A D | pharzip.h | 27 char timestamp[2]; /* last mod file time 2 bytes */ member in struct:_phar_zip_file_header 157 char timestamp[2]; /* last mod file time 2 bytes */ member in struct:_phar_zip_central_dir_file
|
| /PHP_5_4/ext/date/ |
| H A D | php_date.c | 45 ZEND_ARG_INFO(0, timestamp) 50 ZEND_ARG_INFO(0, timestamp) 55 ZEND_ARG_INFO(0, timestamp) 89 ZEND_ARG_INFO(0, timestamp) 94 ZEND_ARG_INFO(0, timestamp) 101 ZEND_ARG_INFO(0, timestamp) 106 ZEND_ARG_INFO(0, timestamp) 1276 /* {{{ proto string date(string format [, long timestamp]) 1284 /* {{{ proto string gmdate(string format [, long timestamp]) 1292 /* {{{ proto int idate(string format [, int timestamp]) 1553 long timestamp = 0; local 1661 long timestamp = (long)time(NULL); local 1708 long timestamp = (long)time(NULL); local 3112 long timestamp; local 3133 long timestamp; local [all...] |
Completed in 110 milliseconds