I cant understand how to use cookies in ZF2? Can some one advise some links with set and get cookie?
相关问题
- Why does recursive submodule update from github fa
- How to pass options/params to formCollection field
- Compress html output from zend framework 2
- How to generate a cookie and send it in a request
- zend smtp mail crashes after 100+ mails
相关文章
- Zend Framework 2 Forms Array notation for drop dow
- Android: Handle Cookie from HTTP Get-Request
- Use spiffy navigation with zfcrbac module
- Best practice to call another controller action fr
- How to use Zend Service Amazon?
- Difference between init() and onBootStrap() in Zen
- Does Zend Framework 2.0 leave out the amazon s3 li
- Zend Framework 2 Flash Messenger returning no mess
simply use the
rememberMe()
method on theSessionManager
to set a cookieSee SessionManager Code on line 260
there also is
forgetMe()
to remove the cookieadditionally you can configure the defaults for your session manager like this:
Module.php
module.config.php
See this class for a complete list of configuration options: