How can I get all variables stored in sesson?
Hi,
There is a code which you can use:
for ($i=0; $i<5; $i++) { $this->session->set('var'.$i, $i); } foreach ($this->session->getIterator() as $key => $value) { var_dump($key); var_dump($value); }
Thanks, I hope to see session->get(null) method to get an array of all stored data in future realses.
session->get(null)