本文實例講述了Symfony2之session與cookie用法。分享給大家參考,請參考如下:
session操作:
1. Set Session:
public function testSetSession() { $session = $this->getRequest()->getSession(); $session->set($sessionName, $sessionValue ); }
rr ee
cookie操作:1. Set Cookie
public function testGetSession() { $session = $this->getRequest()->getSession(); $username = $session->get($sessionName); }
public function testClearSession() { $session = $this->getRequest()->getSession();//清除session $session->clear(); }
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() }
public function testGetCookie() { $request = $this->getRequest(); return $request->cookies->all(); }