Categories: PHP

POST や SESSTION の情報を破棄する

POST データを破棄する

$_POST = array();

SESSION データを破棄する

$_SESSION = array();
session_destroy();
nakaike