downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

session_regenerate_id> <session_module_name
[edit] Last updated: Fri, 17 May 2013

view this page in

session_name

(PHP 4, PHP 5)

session_nameObtener y/o establecer el nombre de la sesión actual

Descripción

string session_name ([ string $name ] )

session_name() devuelve el nombre de la sesión actual. Si se da el nombre name, session_name() actualizará el nombre de la sesión y devolverá el nombre antiguo de la sesión.

El nombre de la sesión se reinicia al valor predeterminado almacenado en session.name en el momento de iniciar una petición. Por lo tanto, se necesita llamar a session_name() por cada petición (y antes de llamar a session_start() o session_register()).

Parámetros

name

El nombre de la sesión hace referencia al nombre de la sesión usado cookies y URLs (p.ej. PHPSESSID). Debería contener sólo caracteres alfanuméricos; debería ser corto y descriptivo (esto es, para usuarios con las advertencias de cookies habilitadas). Si se especifica name, el nombre de la sesión actual se cambia por su valor.

Advertencia

El nombre de la sesión no puede consistir en dígitos solamente, debe de estar presente al menos una letra. De otro modo se genera un nuevo id de sesión cada vez.

Valores devueltos

Devuelve el nombre de la sesión actual.

Ejemplos

Ejemplo #1 Ejemplo de session_name()

<?php

/* establecer el nombre de la sesión a WebsiteID */

$nombre_anterior session_name("WebsiteID");

echo 
"El nombre anterior de la sesión era $nombre_anterior<br />";
?>

Ver también



session_regenerate_id> <session_module_name
[edit] Last updated: Fri, 17 May 2013
 
add a note add a note User Contributed Notes session_name - [6 notes]
up
7
Hongliang Qiang
8 years ago
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.
up
3
Joseph Dalrymple
2 years ago
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.
up
3
relsqui at chiliahedron dot com
4 years ago
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.
up
1
php at wiz dot cx
4 years ago
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.
up
0
slave at codegrunt dot com
8 years ago
One gotcha I have noticed with session_name is that it will trigger a WARNING level error if the cookie or GET/POST variable value has something other than alphanumeric characters in it.  If your site displays warnings and uses PHP sessions this may be a way to enumerate at least some of your scripts: 

http://example.com/foo.php?session_name_here=(bad)

Warning: session_start(): The session id contains invalid characters, valid characters are only a-z, A-Z and 0-9 in /some/path/foo.php on line 666

I did not see anything in the docs suggesting that one had to sanitize the PHP session ID values before opening the session but that appears to be the case.

Unfortunately session_name() always returns true so you have to actually get to the point of assigning variables values before you know whether you have been passed bad session data (as far as I can see).  After the error has been generated in other words.

Cheers
up
-3
webmaster at nncoders dot de
4 years ago
You can always just use "or".

@foo or bar();

When foo fails, (and the at still means don't print an error to the browser), the function bar will be executed.

<?php
   
   
function errorhandler () { /* do something wild */ }
   
    @
session_name('mysession') or errorhandler();
   
?>

Another live example would be
@mysql_query('show databases') or die(mysql_error());

When the execution fails, parameter die is called (with last mysql_error as given string parameter)

 
show source | credits | sitemap | contact | advertising | mirror sites