本文實例講述了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); }2. Get Cookie:
public function testClearSession() { $session = $this->getRequest()->getSession();//清除session $session->clear(); }2. Get 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() }4. twig範本呼叫cookie:
public function testGetCookie() { $request = $this->getRequest(); return $request->cookies->all(); }希望本文所述對大家以Symfony框架為基礎的PHP程式設計有所幫助。 更多Symfony2之session與cookie用法小結相關文章請關注PHP中文網!