이 글은 Symfony2 세션의 사용법을 예시를 통해 분석한 것입니다. 참고하실 수 있도록 자세한 내용은 다음과 같습니다.
Symfony에는 자체 세션 방법이 있습니다. 2.2 이전 버전에서는 세션 사용법이
$session = $this->getRequest()->getSession(); $session->set('foo', 'bar'); $foobar = $session->get('foobar');
use Symfony\Component\HttpFoundation\Request; public function indexAction(Request $request) { $session = $request->getSession(); // store an attribute for reuse during a later user request $session->set('foo', 'bar'); // get the attribute set by another controller in another request $foobar = $session->get('foobar'); // use a default value if the attribute doesn't exist $filters = $session->get('filters', array()); }
http://blog.it985.com/13586.html
이 기사는 IT985 블로그에서 가져온 것입니다. 재인쇄 시 출처와 해당 링크를 표시해 주세요.
위의 내용은 Symfony2 세션 사용 사례 분석을 내용 측면에서 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.