PHP.mk документација

session_name

Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.

function.session-name.php PHP.net прокси Преводот се освежува
Оригинал на PHP.net
Патека function.session-name.php Локална патека за оваа страница.
Извор php.net/manual/en Оригиналниот HTML се реупотребува и локално се стилизира.
Режим Прокси + превод во позадина Кодовите, табелите и белешките остануваат читливи во истиот тек.
session_name

Референца за `function.session-name.php` со подобрена типографија и навигација.

function.session-name.php

session_name

(PHP 4, PHP 5, PHP 7, PHP 8)

session_nameДобијте и/или поставете го името на тековната сесија

= NULL

session_name(?string $name = null): string|false

session_name() враќа име на тековната сесија. Ако name сега е строго типизиран, т.е. ако нешто друго освен session_name() ќе го ажурира името на сесијата и ќе го врати old име на сесија.

Ако нова сесија name е обезбедена, session_name() ги менува HTTP колачињата (и ги прикажува содржините кога session.use_trans_sid е овозможено). Откако ќе се испратат HTTP колачињата, повикувањето session_name() крева E_WARNING. session_name() мора да се повика пред session_start() за да работи правилно сесијата.

Името на сесијата се ресетира на стандардната вредност зачувана во session.name при стартување на барањето. Така, треба да го повикате session_name() за секое барање (и пред session_start() да се повика).

Параметри

name

Името на сесијата се однесува на името на сесијата, кое се користи во колачињата и URL-ите (на пр. PHPSESSID). Треба да содржи само алфанумерички знаци; треба да биде кратко и описно (т.е. за корисници со овозможени предупредувања за колачиња). Ако name е специфицирано и не null, името на тековната сесија се менува во неговата вредност.

Ги ескејпува специјалните знаци во стринг за употреба во SQL изјава

Името на сесијата не може да се состои само од цифри, мора да присуствува барем едно писмо. Во спротивно, нов идентификатор на сесијата се генерира секој пат.

Вратени вредности

Ја враќа името на тековната сесија. Ако name Ја враќа името на тековната сесија. Ако old е дадено и функцијата го ажурира името на сесијата, името на false при неуспех.

Дневник на промени

Верзија = NULL
8.0.0 name сега е null.
7.2.0 session_name() сесијата се враќа, или session_name() ја проверува состојбата на сесијата, претходно само ја проверуваше состојбата на колачињата. Затоа, постари session_name() after session_start() дозволува повикување

Примери

Пример #1 session_name() example

<?php

/* set the session name to WebsiteID */

$previous_name = session_name("WebsiteID");

echo
"The previous session name was $previous_name<br />";
?>

Види Исто така

  • На session.name за прилагодување на овие заглавија.

Белешки од корисници 9 белешки

што може да го сруши PHP и да резултира со погрешно однесување.
21 години пред
This may sound no-brainer: the session_name() function will have no essential effect if you set session.auto_start to "true" in php.ini . And the obvious explanation is the session already started thus cannot be altered before the session_name() function--wherever it is in the script--is executed, same reason session_name needs to be called before session_start() as documented.

I know it is really not a big deal. But I had a quite hard time before figuring this out, and hope it might be helpful to someone like me.
Hongliang Qiang
пред 17 години
if you try to name a php session "example.com" it gets converted to "example_com" and everything breaks.

don't use a period in your session name.
php at wiz dot cx
пред 17 години
Remember, kids--you MUST use session_name() first if you want to use session_set_cookie_params() to, say, change the session timeout. Otherwise it won't work, won't give any error, and nothing in the documentation (that I've seen, anyway) will explain why.

Thanks to brandan of bildungsroman.com who left a note under session_set_cookie_params() explaining this or I'd probably still be throwing my hands up about it.
relsqui at chiliahedron dot com
пред 14 години
For those wondering, this function is expensive!

On a script that was executing in a consistent 0.0025 seconds, just the use of session_name("foo") shot my execution time up to ~0.09s. By simply sacrificing session_name("foo"), I sped my script up by roughly 0.09 seconds.
Joseph Dalrymple
пред 10 години
As  Joseph Dalrymple said, adding session_name do slow down a little bit the execution time.
But, what i've observed is that it decreased the fluctuation between requests.
Requests on my script fluctuated between 0,045 and 0,022 seconds. With session_name("myapp"), it goes to 0,050 and 0,045. Not a big deal, but that's a point to note.

For those with problems setting the name, when session.auto_start is set to 1, you need to set the session.name on php.ini!
mmulej на gmail точка com
пред 5 години
Hope this is not out of php.net noting scope.

session_name('name') must be set before session_start() because the former changes ini settings and the latter reads them. For the same reason session_set_cookie_params($options) must be set before session_start() as well.

I find it best to do the following.

function is_session_started()
{
    if (php_sapi_name() === 'cli')
        return false;

    if (version_compare(phpversion(), '5.4.0', '>='))
        return session_status() === PHP_SESSION_ACTIVE;

    return session_id() !== '';
}
if (!is_session_started()) {
    session_name($session_name);
    session_set_cookie_params($cookie_options);
    session_start();
}
Victor H
пред 7 години
The description that session_name() gets and/or sets the name of the current session is technically wrong. It does nothing but deal with the value originally supplied by the session.name value within the php.ini file.

Thus:-
$name = session_name();
is functionally equivalent to
$name = ini_get('session.name');
and 
session_name('newname);
is functionally equivalent to
ini_set('session.name','newname');

This also means that:
$old_name = session_name('newname');
is functionally equivalent to
$old_name = ini_set('session.name','newname');

The current value of session.name is not attached to a session until session_start() is called. Once session_start() has used session.name to lookup the session_id() in the cookie data the name becomes irrelevant as all further operations on the session data are keyed by the session_id().

Note that changing session.name while a session is currently active will not update the name in any session cookie. The new name does not take effect until the next call to session_start(), and this requires that the current session, which was created with the previous value for session.name, be closed.
Victor H
пред 7 години
The description has recently been modified to contain the statement "When new session name is supplied, session_name() modifies HTTP cookie". This is not correct as session_name() has never modified any cookie data. A change in session.name does not become effective until session_start() is called, and it is session_start() that creates the cookie if it does not already exist.

See the following bug report for details: https://bugs.php.net/bug.php?id=76413
tony at marston-home dot demon dot co dot uk
пред 2 години
Always try to set the prefix for your session name attribute to either `__Host-` or `__Secure-` to benefit from Browsers improved security. See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#attributes

Also, if you have auto_session enabled, you must set this name in session.name in your config (php.ini, htaccess, etc)
На оваа страница

Автоматски outline од активната документација.

Насловите ќе се појават тука по вчитување.

Попрегледно читање

Примерите, changelog табелите и user notes се визуелно издвоени за да не се губат во долгата содржина.

Брз совет Користи го outline-от Скокни директно на главните секции од активната страница.
Извор Оригиналниот линк останува достапен Кога ти треба целосен upstream context, отвори го PHP.net во нов tab.