array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'uk',
),
'this' =>
array (
0 => 'function.session-set-cookie-params.php',
1 => 'session_set_cookie_params',
2 => 'Set the session cookie parameters',
),
'up' =>
array (
0 => 'ref.session.php',
1 => 'Session Функції',
),
'prev' =>
array (
0 => 'function.session-save-path.php',
1 => 'session_save_path',
),
'next' =>
array (
0 => 'function.session-set-save-handler.php',
1 => 'session_set_save_handler',
),
'alternatives' =>
array (
),
'source' =>
array (
'lang' => 'en',
'path' => 'reference/session/functions/session-set-cookie-params.xml',
),
'history' =>
array (
),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);
contributors($setup);
?>
session_set_cookie_params
(PHP 4, PHP 5, PHP 7, PHP 8)
session_set_cookie_params — Set the session cookie parameters
Опис
session_set_cookie_params(
array $lifetime_or_options
):
bool
This function updates the runtime ini values of the corresponding PHP ini configuration
keys which can be retrieved with the ini_get().
Параметри
lifetime_or_options
-
When using the first signature, lifetime of the
session cookie, defined in seconds.
When using the second signature,
an associative array which may have any of the keys
lifetime
, path
, domain
,
secure
, httponly
and samesite
.
The values have the same meaning as described for the parameters with the
same name. The value of the samesite
element should be
either Lax
or Strict
.
If any of the allowed options are not given, their default values are the
same as the default values of the explicit parameters. If the
samesite
element is omitted, no SameSite cookie
attribute is set.
path
-
Path on the domain where
the cookie will work. Use a single slash ('/') for all paths on the
domain.
domain
-
Cookie domain, for
example 'www.php.net'. To make cookies visible on all subdomains then
the domain must be prefixed with a dot like '.php.net'.
secure
-
If true
cookie will only be sent over
secure connections.
httponly
-
If set to true
then PHP will attempt to send the
httponly
flag when setting the session cookie.
Значення, що повертаються
Повертає true
у разі успіху або false
в разі помилки.