<?php session_start(); session_unset(); session_destroy(); ?>
session_unset()
釋放當前在記憶體中已經建立的所有$_SESSION變數,但不刪除session檔案以及不釋放對應的session id
session_destroy()
刪除當前使用者對應的session檔案以及釋放session id,記憶體中的$_SESSION變數內容依然保留
<?php session_start(); session_unset(); session_destroy(); ?>
session_unset()
釋放當前在記憶體中已經建立的所有$_SESSION變數,但不刪除session檔案以及不釋放對應的session id
session_destroy()
刪除當前使用者對應的session檔案以及釋放session id,記憶體中的$_SESSION變數內容依然保留