I am working on a php web application which have many sessions variable. I want to unset some of them.
I dont want to write many lines code
unset($_SESSION['a']);
unset($_SESSION['b']);
unset($_SESSION['c']);
unset($_SESSION['d']);
unset($_SESSION['f']);
unset($_SESSION['a']);
Is to possible to unset this all by one method ?
Thanks