本文執行個體分析了Symfony2 session用法。分享給大家供大家參考,具體如下:
Symfony內建有session的方法,以前老版本2.2及以前的session用法是
$session = $this->getRequest()->getSession();$session->set('foo', 'bar');$foobar = $session->get('foobar');
後來Symfony2.3開始$this->getRequest()方法被廢棄,session的使用方法就變成了
use Symfony\Component\HttpFoundation\Request;public function indexAction(Request $request){ $session = $request->getSession(); // store an attribute for reuse during a later user request $session->set('foo', 'bar'); // get the attribute set by another controller in another request $foobar = $session->get('foobar'); // use a default value if the attribute doesn't exist $filters = $session->get('filters', array());}
本文永久地址:http://blog.it985.com/13586.html
本文出自 IT985部落格 ,轉載時請註明出處及相應連結。
更多關於PHP架構相關內容感興趣的讀者可查看本站專題:《php優秀開發架構總結》,《codeigniter入門教程》,《CI(CodeIgniter)架構進階教程》,《Yii架構入門及常用技巧總結》及《ThinkPHP入門教程》
希望本文所述對大家基於Symfony架構的PHP程式設計有所協助。
以上就介紹了Symfony2 session用法執行個體分析,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。