Welcome Guest, Not a member yet? Register   Sign In
What is the best practice to unset session variable in codeigniter?
#1

Hi,

What is the best practice to unset session variable in codeigniter?

Option 1: unset($_SESSION['some_variable']);

Option 2: $this->session->unset_userdata('some_variable');

Will anybody suggest me, what is the best and why?
Reply
#2

(This post was last modified: 08-22-2017, 01:28 PM by dave friend.)

Don't think an unqualified "best" can be determined.

If you look at the source code for unset_userdata you will see it calls unset($_SESSION['some_variable']);

The advantage to unset_userdata is that you can provide an array of sessions keys to be removed all at once without any further work on your part. In general I'll call unset on $_SESSION if a single item is being removed.
Reply
#3

(08-22-2017, 01:26 PM)daveĀ friend Wrote: Don't think an unqualified "best" can be determined.

If you look at the source code for unset_userdata you will see it calls unset($_SESSION['some_variable']);

The advantage to unset_userdata is that you can provide an array of sessions keys to be removed all at once without any further work on your part. In general I'll call unset on $_SESSION if a single item is being removed.

Thank you very much for your kind reply.
Reply




Theme © iAndrew 2016 - Forum software by © MyBB