hi,
the code below doesn't work, because " $session->start();" is called at any time.
$this->_di->set(
'session',
function(){
$session = new PhSession();
if (!$session->isStarted() ){
$session->start();
}
return $session;
}
);
why?
php 5.5 phalcon 1.3.2
thanks for help.
sorry for my english