how to expire php session if user is inactive for 15 mins

后端 未结 6 573
无人及你
无人及你 2020-12-04 22:48

i have created one project in PHP, into which i am managing sessions.

I am creating session in my config.php file by writing following line of code.

         


        
6条回答
  •  甜味超标
    2020-12-04 23:14

    try

      ini_set('session.gc_maxlifetime',54000);  
      ini_set('session.gc_probability',1);
      ini_set('session.gc_divisor',1); 
    

    use this before calling session_start()

提交回复
热议问题