session_get_cookie_params
(PHP 4, PHP 5, PHP 7)
session_get_cookie_params — Возвращает параметры cookie сессии
Описание
array session_get_cookie_params
( void
)
Возвращаемые значения
Возвращает массив с информацией о cookie текущей сессии, который содержит
следующие элементы:
-
"lifetime" - Время жизни cookie
в секундах.
-
"path" - Путь, где размещена
хранимая информация.
-
"domain" - Домен cookie.
-
"secure" - cookie должны передаваться
только через безопасные соединения.
-
"httponly" - cookie могут быть
доступны только по протоколу HTTP.
Коментарии
It should be noted that this gets the session cookie ini file parameters, not the parameters from the cookie itself.
ie. if you set the cookie lifetime using session_set_cookie_params(12345) and then try to use session_get_cookie_params, you will not get back 12345. Instead, you will get the lifetime set in the ini file.