我同时(在同一页面上)运行两个不同的 php 应用程序/会话,我需要在用户注销时关闭/终止,然后将用户重定向到登录页面。这是正确的做法吗?谢谢。
<?php
session_name('loginsystem');
session_name('chatsystem');
session_start();
$_SESSION = array();
session_unset();
session_destroy();
header("Location:http://localhost:8888/vtracker2/index.php");
exit();
?>