hi all,
i want to know if Zend Framework has any class for handling cookies. a class that wraps php's setcookie()
function for example.
thanks in advance.
views:
4073answers:
2
+4
A:
If you wan't for example $_COOKIE['foo'] you use
$this->getRequest()->getCookie('foo');
What I've talked in #zftalk @freenode PHP's own setcookie()
is correct way to set client's cookie.
raspi
2009-06-07 10:22:23
+4
A:
Zend_Http_Cookie
is just a component to create RFC compatible cookie strings and to test a cookie against a given HTTP request scenario. Its primary purpose is to assist in cookie-scenarios with Zend_Http_Client
in the Zend_Http
package.
I assume that you're looking for a wrapper set cookies - perhaps compared to Zend_Session
. There currently is no such component to assist you with creating cookies (setcookie()
is the right way to go). To read cookies you can resort to the appropriate method Zend_Controller_Request_Http
::getCookie($key = null, $default = null)
.
Stefan Gehrig
2009-06-07 10:24:35
yah, i was looking for a wrapper set cookies. i will use php's setcookie functions. thanks anyway.
2009-06-07 10:45:57