Get cookie expiration

前端 未结 3 446
别那么骄傲
别那么骄傲 2021-01-21 21:56

Is it possible to read cookie expiration time with php ? When I print_r($_COOKIE) it outputs:

Array
(
    [PHPSESSID] => 0afef6bac83a7db8abd9f87b         


        
3条回答
  •  囚心锁ツ
    2021-01-21 22:45

    Only name and value are sent to the server so no other cookie data is available.

    You can simply re-set the cookie if you want to extend its duration - that's just a few bytes more in the response so it doesn't matter at all.

提交回复
热议问题