This article analyzes the usage of Symfony2 session with examples. Share it with everyone for your reference, the details are as follows:
Symfony has its own session method. The session usage in the old version 2.2 and before was
$session = $this->getRequest()->getSession(); $session->set('foo', 'bar'); $foobar = $session->get('foobar');
Later, the $this->getRequest() method was abandoned starting from Symfony2.3, and the usage method of session became
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()); }
I hope this article will help The above will be helpful to everyone in PHP programming based on the Symfony framework.
For more articles related to Symfony2 session usage example analysis, please pay attention to the PHP Chinese website!