Home
last modified time | relevance | path

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

12

/PHP-8.0/ext/session/tests/
H A Dbug32330.phpt47 function sGC($maxlifetime)
49 echo "gc: maxlifetime = {$maxlifetime}\n";
74 gc: maxlifetime = %d
79 gc: maxlifetime = %d
84 gc: maxlifetime = %d
H A Dsession_set_save_handler_variation4.phpt19 function noisy_gc($maxlifetime) {
20 echo("GC [".$maxlifetime."]\n");
21 echo gc($maxlifetime)." deleted\n";
H A Dsession_set_save_handler_iface_002.phpt21 public function gc($maxlifetime);
51 public function gc($maxlifetime) {
53 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_variation5.phpt18 function noisy_gc($maxlifetime) {
19 echo("GC [".$maxlifetime."]\n");
20 echo gc($maxlifetime)." deleted\n";
H A Dsession_set_save_handler_class_016.phpt42 public function gc($maxlifetime) {
44 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_class_017.phpt42 public function gc($maxlifetime) {
44 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_iface_003.phpt43 public function gc($maxlifetime) {
45 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_class_018.phpt42 public function gc($maxlifetime) {
44 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_sid_001.phpt43 public function gc($maxlifetime) {
45 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_sid_002.phpt43 public function gc($maxlifetime) {
45 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_class_002.phpt43 public function gc($maxlifetime) {
45 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_set_save_handler_iface_001.phpt42 public function gc($maxlifetime) {
44 if (filemtime($filename) + $maxlifetime < time()) {
H A Dsession_module_name_variation2.phpt17 function gc($maxlifetime) { }
H A Dbug80889a.phpt26 function ($maxlifetime) {
H A Dbug61728.phpt34 function gc ($maxlifetime) {
H A Dbug80889.phpt25 public function gc($maxlifetime) {
H A Dbug60634.phpt34 function gc($maxlifetime) {
H A Dsession_set_save_handler_error3.phpt23 function gc($maxlifetime) { return true; }
H A Dbug79091.phpt21 public function gc($maxlifetime)
H A Dsession_module_name_variation3.phpt23 function gc($maxlifetime) { return true; }
H A Dsession_set_save_handler_error2.phpt19 function gc($maxlifetime) { return true; }
H A Dbug60634_error_2.phpt36 function gc($maxlifetime) {
H A Dbug60634_error_5.phpt35 function gc($maxlifetime) {
/PHP-8.0/ext/session/
H A Dmod_user_class.c140 zend_long maxlifetime; in PHP_METHOD() local
143 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &maxlifetime) == FAILURE) { in PHP_METHOD()
149 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 29 milliseconds

12