PHP中如何删除当前用户的会话变量?
在PHP中,可以使用unset()函数来删除当前用户的会话变量。
<?php
session_start();
// 删除会话变量
unset($_SESSION['variable_name']);
// 或者通过session_unset()函数删除所有会话变量
// session_unset();
// 销毁会话
// session_destroy();
?>
在上面的示例代码中,通过unset()函数删除了名为`variable_name`的会话变量。如果要删除所有会话变量,可以使用session_unset()函数。如果还需要销毁会话,可以使用session_destroy()函数。