(PHP) How to destroy the session cookie correctly?

前端 未结 3 827
我在风中等你
我在风中等你 2020-11-28 15:02

I\'m trying to correctly log out of an admin user. Here is my function:

function logout()
{
    $_SESSION = array(); //destroy all of the session variables
          


        
3条回答
  •  我在风中等你
    2020-11-28 15:51

    Just a tip for others who are having issues expiring session cookies:

    PHP - why can't I get rid of this session id cookie?

    Always use session_get_cookie_params() as in the answer to the question in the link above.

提交回复
热议问题