When I create a cookie, how to get cookie's expire time?
Thanks a lot.
|
|
This is difficult to achieve, but the cookie expiration date can be set in another cookie. This cookie can then be read later to get the expiration date. Maybe there is a better way, but this is one of the methods to solve your problem. |
|||||
|
|
When you create a cookie via PHP die Default Value is 0, from the manual:
Otherwise you can set the cookies lifetime in seconds as the third parameter: http://www.php.net/manual/en/function.setcookie.php But if you mean to get the remaining lifetime of an already existing cookie, i fear that, is not possible (at least not in a direct way). |
||||
|
|
|
Putting an encoded json inside the cookie is my favorite method, to get properly formated data out of a cookie. Try that:
then when you get your cookie next time:
you can simply extract the expiry time, which was inserted as data inside the cookie itself..
and additionally the data which will come out as a usable object :)
etc. I find that to be a much neater way to use cookies, because you can nest as many small objects within other objects as you wish! |
|||
|
|
|
You can set your cookie value containing expiry and get your expiry from cookie value.
// Remember, some two-way encryption would be more secure in this case. See: https://github.com/qeremy/Cryptee |
||||
|
|
|
You can set the expiration time setting the time. It's the third attribute. Read the manual. In that case the cookie expires in 30 days
After you have set the cookie you can read
and then get the value. Another way is put the expiration as the value of another cookie with the same expiration of the first. |
|||||||||||||
|