How to set lifetime of session

后端 未结 6 2133
梦如初夏
梦如初夏 2020-11-27 03:36

How to set session lifetime in PHP? I Want to set it to forever as long as the request is exist. The request is AJAX. My PHP code that handle AJAX request is:



        
6条回答
  •  难免孤独
    2020-11-27 03:59

    Prior to PHP 7, the session_start() function did not directly accept any configuration options. Now you can do it this way

     86400,
    ]);
    ?>
    

    Reference: https://php.net/manual/en/function.session-start.php#example-5976

提交回复
热议问题