Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
class myController extends Controller
{
    public function newAction($id)
    {
        $session = $this->get('session');

        if(is_null(($session->get('foo')))){
            echo "the variable foo is no set in session";
            $session->set('foo', 'bar');
        }
    }
}

Why the msg of the echo appears every time the action is load?

share|improve this question
2  
Can you paste the result of var_dump($session->isStarted())? If false, try $session->start(). If true, check your browser settings! – Florent Aug 8 '12 at 16:26
I'm using Symfony 2.0 . This method is only for Symfony 2.1 . I put the $session->start() and check browser settings. In config.yml the session auto_start is true. The msg still appear. – Munir Aug 9 '12 at 11:46
The problem is I have another object(an entity) which is storing in session either. Don't know why it's interfering in others variables of session. When remove it everything works. Now I have another problem, store entity in session. But I will search more. Thx anyway! – Munir Aug 9 '12 at 12:46

1 Answer

up vote 0 down vote accepted

This works for me:

class SessionTestController extends Controller
{
    public function testAction()
    {
        $session = $this->get('session');

        if (is_null($session->get('foo'))) {
            $session->set('foo', 'bar');
            $responseText = 'foo is null';
        } else {
            $responseText = 'foo is set';
        }

        // Use a response object
        return new Response($responseText);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.