PHP Function List
session_regenerage_id doesn't exist. Closest matches:
- session_regenerate_id
- session_is_registered
- session_register
- msession_create
- session_name
- session_unregister
- session_register_shutdown
- session_id
- msession_get_data
- session_encode
- msession_get_array
- msession_get
- id3_get_genre_id
- msession_randstr
- session_pgsql_get_field
- session_unset
- msession_find
- msession_uniq
- session_cache_expire
- eio_rename
Site Search Results
-
session_regenerate_id - Manualsession_regenerate_id (PHP 4 >= 4.3.2, PHP 5) session_regenerate_id — Update the current session id with a newly generated one
-
2) Use session_regenerate_id() when logging a user in or otherwise changing their authority level. Hope this helps somebody. Rob * Here is the relevant code in head.c:
-
I had a lot of trouble with session_regenerate_id() as it did not regenerate... Session_id() stayed the same no matter what (unless closing the window).
-
What did finally work for me was to fire off a session_regenerate_id(true) call just prior to the header() and die() calls. session_regenerate_id(true);
-
session_unset (); session_destroy (); session_write_close (); setcookie (session_name (), '', 0, '/'); session_regenerate_id (true);?>
-
if (PHP_VERSION >= 5.1) {session_regenerate_id (true);} else {session_regenerate_id ();} //declare two session variables and assign them $_SESSION ['MM_Username'] = ...
-
session_set_save_handler - ManualThis callback is executed when a session is destroyed with session_destroy() or with session_regenerate_id() with the destroy parameter set to TRUE.
-
2) Use session_regenerate_id() when logging a user in or otherwise changing their authority level. Hope this helps somebody. Rob * Here is the relevant code in head.c:
-
For example, if you set a bunch of session variables and then run session_regenerate_id() - the session variables are never written to the old session.
-
session_regenerate_id (); // create new (copy of old), leave old alone $_SESSION = array(); // wipe data clean for a fresh session

Other forms of search
To search the string "session_regenerage_id" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
