cannot set an index of a session |
(07-04-2018, 01:31 AM)hamidb80 Wrote: Hello. I try to change an index of a session but codeigniter sent an Error : I think what you were trying to do is PHP Code: $this->session->user = ['coins' => 5]; Which produces the exact same result as PHP Code: $_SESSION['user']['coins'] = 5; After either of the above is run PHP Code: var_dump($_SESSION); Code: array (size=2) |
Messages In This Thread |
cannot set an index of a session - by hamidb80 - 07-04-2018, 01:31 AM
RE: cannot set an index of a session - by InsiteFX - 07-04-2018, 03:44 AM
RE: cannot set an index of a session - by hamidb80 - 07-04-2018, 06:36 AM
RE: cannot set an index of a session - by Paradinight - 07-04-2018, 07:33 AM
RE: cannot set an index of a session - by dave friend - 07-04-2018, 03:07 PM
|