Home
last modified time | relevance | path

Searched refs:maxlifetime (Results 1 – 25 of 37) sorted by relevance

12

/PHP-8.2/ext/session/tests/
H A Dbug32330.phpt49 function sGC($maxlifetime)
51 echo "gc: maxlifetime = {$maxlifetime}\n";
76 gc: maxlifetime = %d
81 gc: maxlifetime = %d
86 gc: maxlifetime = %d
H A Dsession_set_save_handler_variation4.phpt21 function noisy_gc($maxlifetime) {
22 echo("GC [".$maxlifetime."]\n");
23 echo gc($maxlifetime)." deleted\n";
H A Dsession_set_save_handler_iface_002.phpt23 public function gc($maxlifetime): int|false;
55 public function gc($maxlifetime): int|false {
57 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_variation5.phpt20 function noisy_gc($maxlifetime) {
21 echo("GC [".$maxlifetime."]\n");
22 echo gc($maxlifetime)." deleted\n";
H A Dsession_set_save_handler_class_016.phpt44 public function gc($maxlifetime): int|false {
46 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_class_017.phpt44 public function gc($maxlifetime): int|false {
46 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_class_018.phpt44 public function gc($maxlifetime): int|false {
46 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_iface_003.phpt45 public function gc($maxlifetime): int|false {
47 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_sid_001.phpt45 public function gc($maxlifetime): int|false {
47 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_sid_002.phpt46 public function gc($maxlifetime): int|false {
48 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_class_002.phpt45 public function gc($maxlifetime): int|false {
47 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_iface_001.phpt44 public function gc($maxlifetime): int|false {
46 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_module_name_variation2.phpt19 function gc($maxlifetime) { }
H A Dbug80889a.phpt28 function ($maxlifetime) {
H A Dbug61728.phpt36 function gc ($maxlifetime) {
H A Dbug60634.phpt36 function gc($maxlifetime) {
H A Dbug80889.phpt27 public function gc($maxlifetime): int|false {
H A Dgh9584.phpt32 public function gc($maxlifetime): int|false {
H A Dbug79091.phpt19 public function gc($maxlifetime): int|false
H A Dsession_set_save_handler_error3.phpt25 function gc($maxlifetime) { return true; }
H A Dbug60634_error_2.phpt38 function gc($maxlifetime) {
H A Dbug60634_error_5.phpt37 function gc($maxlifetime) {
H A Dsession_module_name_variation3.phpt25 function gc($maxlifetime) { return true; }
/PHP-8.2/ext/session/
H A Dmod_user_class.c142 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 Dphp_session.h32 #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 22 milliseconds

12