Symfony2之session与cookie用法小结,symfony2cookie
本文实例讲述了Symfony2之session与cookie用法。分享给大家供大家参考,具体如下:
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模板调用cookie:
{{ app.request.cookies.get('cookie_name') }}
希望本文所述对大家基于Symfony框架的PHP程序设计有所帮助。
您可能感兴趣的文章:
- Symfony2联合查询实现方法
- Symfony2创建页面实例详解
- symfony2.4的twig中date用法分析
- Symfony2实现从数据库获取数据的方法小结
- Symfony2框架学习笔记之表单用法详解
- Symfony2学习笔记之插件格式分析
- Symfony2学习笔记之系统路由详解
- Symfony2学习笔记之控制器用法详解
- Symfony2学习笔记之模板用法详解
- Symfony2安装第三方Bundles实例详解
- Symfony2函数用法实例分析

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software