《PHP學習:Symfony2之session與cookie用法小結》要點:
本文介紹了PHP學習:Symfony2之session與cookie用法小結,希望對您有用。如果有疑問,可以聯系我們。
本文實例講述了Symfony2之session與cookie用法.分享給大家供大家參考,具體如下:PHP編程
session操作:PHP編程
1. Set Session:PHP編程
public function testSetSession() { $session = $this->getRequest()->getSession(); $session->set($sessionName, $sessionValue ); }
2. Get Session:PHP編程
public function testGetSession() { $session = $this->getRequest()->getSession(); $username = $session->get($sessionName); }
3. Clear Session:PHP編程
public function testClearSession() { $session = $this->getRequest()->getSession();//清除session $session->clear(); }
cookie操作:PHP編程
1. Set CookiePHP編程
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:PHP編程
public function testGetCookie() { $request = $this->getRequest(); return $request->cookies->all(); }
3. Clear Cookie:PHP編程
public function testClearCookie() { $response = new Response(); $response->headers->setCookie(new Cookie($name, $value, -1)); $response->send(); }
4. twig模板調用cookie:PHP編程
{{ app.request.cookies.get('cookie_name') }}
希望本文所述對大家基于Symfony框架的PHP程序設計有所贊助.PHP編程
維易PHP培訓學院每天發布《PHP學習:Symfony2之session與cookie用法小結》等實戰技能,PHP、MYSQL、LINUX、APP、JS,CSS全面培養人才。
轉載請注明本頁網址:
http://www.snjht.com/jiaocheng/7311.html