session与cookie怎么在Symfony2中使用

这篇文章给大家介绍session与cookie怎么在Symfony2中使用,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

session操作:

session与cookie怎么在Symfony2中使用

1. Set Session:

publicfunctiontestSetSession(){
$session=$this->getRequest()->getSession();
$session->set($sessionName,$sessionValue);
}

2. Get Session:

publicfunctiontestGetSession(){
$session=$this->getRequest()->getSession();
$username=$session->get($sessionName);
}

3. Clear Session:

publicfunctiontestClearSession(){
$session=$this->getRequest()->getSession();//清除session
$session->clear();
}

cookie操作:

1. Set Cookie

useSymfony\Component\HttpFoundation\Response;
useSymfony\Component\HttpFoundation\Cookie;
publicfunctiontestSetCookie($name,$value,$expire=0){
$response=newResponse();
$response->headers->setCookie(newCookie($name,$value,time()+$expire));
$response->send();//包括sendHeaders()、sendContent()
}

2. Get Cookie:

publicfunctiontestGetCookie(){
$request=$this->getRequest();
return$request->cookies->all();
}

3. Clear Cookie:

publicfunctiontestClearCookie(){
$response=newResponse();
$response->headers->setCookie(newCookie($name,$value,-1));
$response->send();
}

4. twig模板调用cookie:

{{app.request.cookies.get('cookie_name')}}

关于session与cookie怎么在Symfony2中使用就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

发布于 2021-04-03 22:30:46
收藏
分享
海报
0 条评论
169
上一篇:Zend_Registry对象如何在Zend Framework中使用 下一篇:date怎么在symfony2.4中使用
目录

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~

    忘记密码?

    图形验证码