Summary of session and cookie usage in Symfony2
The example in this article describes the usage of session and cookie in Symfony2. Share it with everyone for your reference, the details are as follows:
session operation:
1. Set Session:
public function testSetSession() { $session = $this->getRequest()->getSession(); $session->set($sessionName, $sessionValue ); }
2 . Get Session:
public function testGetSession() { $session = $this->getRequest()->getSession(); $username = $session->get($sessionName); }
3. Clear Session:
public function testClearSession() { $session = $this->getRequest()->getSession();//清除session $session->clear(); }
cookie operation:
1. Set Cookie
use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Cookie; public function testSetCookie($name, $value, $expire=0){ $response = new Response(); $response->headers->setCookie(new Cookie($name, $value, time() + $expire)); $response->send(); // 包括 sendHeaders()、sendContent() }
2. Get Cookie:
public function testGetCookie() { $request = $this->getRequest(); return $request->cookies->all(); }
3. Clear Cookie:
public function testClearCookie() { $response = new Response(); $response->headers->setCookie(new Cookie($name, $value, -1)); $response->send(); }
4. twig template calls cookie:
{{ app.request.cookies.get('cookie_name') }}
I hope this article will be helpful to everyone’s PHP program design based on the Symfony framework.
For more articles related to the summary of session and cookie usage in Symfony2, please pay attention to the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

