CodeIgniter Forums
Session how do I remove the old ones? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=11)
+--- Thread: Session how do I remove the old ones? (/showthread.php?tid=88919)



Session how do I remove the old ones? - mhmtpccl - 12-02-2023

Hello, how do I clear old session data?


RE: Session how do I remove the old ones? - InsiteFX - 12-03-2023

PHP Code:
unset($_SESSION['some_name']); 



RE: Session how do I remove the old ones? - engel - 12-03-2023

Or by using CI's session library:
PHP Code:
$session->remove('session_name');

//or if you want remove multiple items

$array_items = ['session_name1''session_name2'];
$session->remove($array_items);