這篇文章給大家介紹session與cookie怎么在Symfony2中使用,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
session操作:
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操作:
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模板調(diào)用cookie:
{{ app.request.cookies.get('cookie_name') }}
關(guān)于session與cookie怎么在Symfony2中使用就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。