“PHP Close Session” Ответ

PHP DELETE SESSION

session_destroy(); // To delete whole session
// OR
unset($_SESSION['myVar']); // To delete a session var
Allen

переменная конечного сеанса PHP

// destroy the session
<?php
session_destroy();
?>
Helpful Hamster

PHP Close Session

// save the Session and close it, 
// so the next request (with the same SessionID) can be processed parallel
session_write_close();
TomatenTim

PHP сессия уничтожила

<?php
// Destroy the currently active session.
session_destroy();
?>
The Red-est of Firebreaks

Ответы похожие на “PHP Close Session”

Вопросы похожие на “PHP Close Session”

Больше похожих ответов на “PHP Close Session” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования