Searched refs:maxlifetime (Results 1 – 25 of 37) sorted by relevance
12
/PHP-8.2/ext/session/tests/ |
H A D | bug32330.phpt | 49 function sGC($maxlifetime) 51 echo "gc: maxlifetime = {$maxlifetime}\n"; 76 gc: maxlifetime = %d 81 gc: maxlifetime = %d 86 gc: maxlifetime = %d
|
H A D | session_set_save_handler_variation4.phpt | 21 function noisy_gc($maxlifetime) { 22 echo("GC [".$maxlifetime."]\n"); 23 echo gc($maxlifetime)." deleted\n";
|
H A D | session_set_save_handler_iface_002.phpt | 23 public function gc($maxlifetime): int|false; 55 public function gc($maxlifetime): int|false { 57 if (filemtime($filename) + $maxlifetime < time()) {
|
H A D | session_set_save_handler_variation5.phpt | 20 function noisy_gc($maxlifetime) { 21 echo("GC [".$maxlifetime."]\n"); 22 echo gc($maxlifetime)." deleted\n";
|
H A D | session_set_save_handler_class_016.phpt | 44 public function gc($maxlifetime): int|false { 46 if (filemtime($filename) + $maxlifetime < time()) {
|
H A D | session_set_save_handler_class_017.phpt | 44 public function gc($maxlifetime): int|false { 46 if (filemtime($filename) + $maxlifetime < time()) {
|
H A D | session_set_save_handler_class_018.phpt | 44 public function gc($maxlifetime): int|false { 46 if (filemtime($filename) + $maxlifetime < time()) {
|
H A D | session_set_save_handler_iface_003.phpt | 45 public function gc($maxlifetime): int|false { 47 if (filemtime($filename) + $maxlifetime < time()) {
|
H A D | session_set_save_handler_sid_001.phpt | 45 public function gc($maxlifetime): int|false { 47 if (filemtime($filename) + $maxlifetime < time()) {
|
H A D | session_set_save_handler_sid_002.phpt | 46 public function gc($maxlifetime): int|false { 48 if (filemtime($filename) + $maxlifetime < time()) {
|
H A D | session_set_save_handler_class_002.phpt | 45 public function gc($maxlifetime): int|false { 47 if (filemtime($filename) + $maxlifetime < time()) {
|
H A D | session_set_save_handler_iface_001.phpt | 44 public function gc($maxlifetime): int|false { 46 if (filemtime($filename) + $maxlifetime < time()) {
|
H A D | session_module_name_variation2.phpt | 19 function gc($maxlifetime) { }
|
H A D | bug80889a.phpt | 28 function ($maxlifetime) {
|
H A D | bug61728.phpt | 36 function gc ($maxlifetime) {
|
H A D | bug60634.phpt | 36 function gc($maxlifetime) {
|
H A D | bug80889.phpt | 27 public function gc($maxlifetime): int|false {
|
H A D | gh9584.phpt | 32 public function gc($maxlifetime): int|false {
|
H A D | bug79091.phpt | 19 public function gc($maxlifetime): int|false
|
H A D | session_set_save_handler_error3.phpt | 25 function gc($maxlifetime) { return true; }
|
H A D | bug60634_error_2.phpt | 38 function gc($maxlifetime) {
|
H A D | bug60634_error_5.phpt | 37 function gc($maxlifetime) {
|
H A D | session_module_name_variation3.phpt | 25 function gc($maxlifetime) { return true; }
|
/PHP-8.2/ext/session/ |
H A D | mod_user_class.c | 142 zend_long maxlifetime; in PHP_METHOD() local 145 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &maxlifetime) == FAILURE) { in PHP_METHOD() 151 if (PS(default_mod)->s_gc(&PS(mod_data), maxlifetime, &nrdels) == FAILURE) { in PHP_METHOD()
|
H A D | php_session.h | 32 #define PS_READ_ARGS void **mod_data, zend_string *key, zend_string **val, zend_long maxlifetime 33 #define PS_WRITE_ARGS void **mod_data, zend_string *key, zend_string *val, zend_long maxlifetime 35 #define PS_GC_ARGS void **mod_data, zend_long maxlifetime, zend_long *nrdels 38 …PS_UPDATE_TIMESTAMP_ARGS void **mod_data, zend_string *key, zend_string *val, zend_long maxlifetime
|
Completed in 23 milliseconds
12