my code is
the result is 1. why?
Do var_dump($this->session), so you can see what's happening inside.
var_dump($this->session)
The "_started" property change to false?So I can't use $this->session->has to confirm the session when I use forward after destroy session ?
Do var_dump($this->session->get("aaa")).
var_dump($this->session->get("aaa"))
After destroy, the value is "aaa", I think the destroy method doesn't do the real destroy, It still can be read untill the request is done, but this is illogical.
@phalcon will explain us better (I'm also curious).