Home > php教程 > PHP开发 > body text

Symfony2 session usage example analysis

高洛峰
Release: 2016-12-26 12:28:16
Original
1405 people have browsed it

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');
Copy after login

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());
}
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!