| /PHP_5_5/TSRM/ |
| H A D | tsrm_virtual_cwd.c | 682 bucket->expires = t + CWDG(realpath_cache_ttl); 703 if (CWDG(realpath_cache_ttl) && (*bucket)->expires < t) {
|
| H A D | tsrm_virtual_cwd.h | 218 time_t expires; member in struct:_realpath_cache_bucket
|
| /PHP_5_5/ext/standard/ |
| H A D | filestat.c | 1219 add_assoc_long(entry, "expires", bucket->expires);
|
| H A D | head.h | 34 PHPAPI int php_setcookie(char *name, int name_len, char *value, int value_len, time_t expires, char *path, int path_len, char *domain, int domain_len, int secure, int url_encode, int httponly TSRMLS_DC);
|
| H A D | head.c | 76 PHPAPI int php_setcookie(char *name, int name_len, char *value, int value_len, time_t expires, char *path, int path_len, char *domain, int domain_len, int secure, int url_encode, int httponly TSRMLS_DC) argument 120 snprintf(cookie, len + 100, "Set-Cookie: %s=deleted; expires=%s; Max-Age=0", name, dt); 124 if (expires > 0) { 127 strlcat(cookie, "; expires=", len + 100); 128 dt = php_format_date("D, d-M-Y H:i:s T", sizeof("D, d-M-Y H:i:s T")-1, expires, 0 TSRMLS_CC); 141 snprintf(tsdelta, sizeof(tsdelta), "%li", (long) difftime(expires, time(NULL))); 175 /* php_set_cookie(name, value, expires, path, domain, secure) */ 176 /* {{{ proto bool setcookie(string name [, string value [, int expires [, string path [, string domain [, bool secure[, bool httponly]]]]]]) 181 long expires = 0; local 186 &name_len, &value, &value_len, &expires, 204 long expires = 0; local [all...] |
| H A D | basic_functions.c | 1464 ZEND_ARG_INFO(0, expires) 1473 ZEND_ARG_INFO(0, expires)
|
| /PHP_5_5/ext/session/ |
| H A D | session.c | 1156 #define COOKIE_EXPIRES "; expires=" 1807 zval **expires = NULL; local 1810 if (zend_parse_parameters(argc TSRMLS_CC, "|Z", &expires) == FAILURE) { 1817 convert_to_string_ex(expires); 1818 zend_alter_ini_entry("session.cache_expire", sizeof("session.cache_expire"), Z_STRVAL_PP(expires), Z_STRLEN_PP(expires), ZEND_INI_USER, ZEND_INI_STAGE_RUNTIME);
|
| /PHP_5_5/sapi/cgi/ |
| H A D | cgi_main.c | 186 time_t expires; member in struct:_user_config_cache_entry 760 new_entry->expires = 0; 768 if (request_time > entry->expires) { 820 entry->expires = request_time + PG(user_ini_cache_ttl);
|
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_main.c | 186 time_t expires; member in struct:_user_config_cache_entry 700 new_entry->expires = 0; 708 if (request_time > entry->expires) { 757 entry->expires = request_time + PG(user_ini_cache_ttl);
|