XLVIII. Session handling functions

Session support in PHP consists of a way to preserve certain data across subsequent accesses. This enables you to build more customized applications and increase the appeal of your web site.

If you are familiar with the session management of PHPLIB, you will notice that some concepts are similar to PHP's session support.

A visitor accessing your web site is assigned an unique id, the so-called session id. This is either stored in a cookie on the user side or is propagated in the URL.

The session support allows you to register arbitrary numbers of variables to be preserved across requests. When a visitor accesses your site, PHP will check automatically (if session.auto_start is set to 1) or on your request (explicitly through session_start() or implicitly through session_register()) whether a specific session id has been sent with the request. If this is the case, the prior saved environment is recreated.

All registered variables are serialized after the request finishes. Registered variables which are undefined are marked as being not defined. On subsequent accesses, these are not defined by the session module unless the user defines them later.

track_vars and gpc_globals configuration settings influence how the session variables get restored. If track_vars is enabled, then the restored session variables will be available in the global associative array $HTTP_STATE_VARS. If gpc_globals is enabled, then the session variables will be restored to corresponding global variables. If both of these settings are enabled, then the globals variables and the $HTTP_STATE_VARS entries will reference the same value.

There are two methods to propagate a session id:

  • Cookies

  • URL parameter

The session module supports both methods. Cookies are optimal, but since they are not reliable (clients are not bound to accept them), we cannot rely on them. The second method embeds the session id directly into URLs.

PHP is capable of doing this transparently when compiled with --enable-trans-sid. If you enable this option, relative URIs will be changed to contain the session id automatically. Alternatively, you can use the constant SID which is defined, if the client did not send the appropiate cookie. SID is either of the form session_name=session_id or is an empty string.

The following example demonstrates how to register a variable, and how to link correctly to another page using SID.

Example 1. Counting the number of hits of a single user

  1 
  2 <?php
  3 session_register("count");
  4 $count++;
  5 ?>
  6 
  7 Hello visitor, you have seen this page <? echo $count; ?> times.<p>
  8 
  9 <php?
 10 # the <?=SID?> is necessary to preserve the session id
 11 # in the case that the user has disabled cookies
 12 ?>
 13 
 14 To continue, <A HREF="nextpage.php?<?=SID?>">click here</A>
 15      

To implement database storage you need PHP code and a user level function session_set_save_handler(). You would have to extend the following functions to cover MySQL or another database.

Example 2. Usage of session_set_save_handler()

  1 
  2 <?php
  3 
  4 function open ($save_path, $session_name) {
  5     echo "open ($save_path, $session_name)\n";
  6     return true;
  7 }
  8 
  9 function close() {
 10     echo "close\n";
 11     return true;
 12 }
 13 
 14 function read ($key) {
 15     echo "write ($key, $val)\n";
 16     return "foo|i:1;";
 17 }
 18 
 19 function write ($key, $val) {
 20     echo "write ($key, $val)\n";
 21     return true;
 22 }
 23 
 24 function destroy ($key) {
 25     return true;
 26 }
 27 
 28 function gc ($maxlifetime) {
 29     return true;
 30 }
 31 
 32 session_set_save_handler ("open", "close", "read", "write", "destroy", "gc");
 33 
 34 session_start();
 35 
 36 $foo++;
 37 
 38 ?>
 39      

Will produce this results:

  1 
  2 $ ./php save_handler.php
  3 Content-Type: text/html
  4 Set-cookie: PHPSESSID=f08b925af0ecb52bdd2de97d95cdbe6b
  5 
  6 open (/tmp, PHPSESSID)
  7 read (f08b925af0ecb52bdd2de97d95cdbe6b)
  8 write (f08b925af0ecb52bdd2de97d95cdbe6b, foo|i:2;)
  9 close
 10     

The <?=SID?> is not necessary, if --enable-trans-sid was used to compile PHP.

The session management system supports a number of configuration options which you can place in your php.ini file. We will give a short overview.

  • session.save_handler defines the name of the handler which is used for storing and retrieving data associated with a session. Defaults to files.

  • session.save_path defines the argument which is passed to the save handler. If you choose the default files handler, this is the path where the files are created. Defaults to /tmp.

  • session.name specifies the name of the session which is used as cookie name. It should only contain alphanumeric characters. Defaults to PHPSESSID.

  • session.auto_start specifies whether the session module start a session automatically on request startup. Defaults to 0 (disabled).

  • session.lifetime specifies the lifetime of the cookie in seconds which is sent to the browser. The value 0 means "until the browser is closed." Defaults to 0.

  • session.serialize_handler defines the name of the handler which is used to serialize/deserialize data. Currently, a PHP internal format (name php) and WDDX is supported (name wddx). WDDX is only available, if PHP is compiled with WDDX support. Defaults to php.

  • session.gc_probability specifies the probability that the gc (garbage collection) routine is started on each request in percent. Defaults to 1.

  • session.gc_maxlifetime specifies the number of seconds after which data will be seen as 'garbage' and cleaned up.

  • session.referer_check determines whether session ids referred to by external sites will be eliminated. If session ids are propagated using the URL method, users not knowing about the impact might publish session ids. This can lead to security problems which this check tries to defeat. Defaults to 0.

  • session.entropy_file gives a path to an external resource (file) which will be used as an additional entropy source in the session id creation process. Examples are /dev/random or /dev/urandom which are available on many Unix systems.

  • session.entropy_length specifies the number of bytes which will be read from the file specified above. Defaults to 0 (disabled).

  • session.use_cookies specifies whether the module will use cookies to store the session id on the client side. Defaults to 1 (enabled).

Note: Session handling was added in PHP 4.0.

Table of Contents
session_start — Initialize session data
session_destroy — Destroys all data registered to a session
session_name — Get and/or set the current session name
session_module_name — Get and/or set the current session module
session_save_path — Get and/or set the current session save path
session_id — Get and/or set the current session id
session_register — Register one or more variables with the current session
session_unregister — Unregister a variable from the current session
session_is_registered — Find out if a variable is registered in a session
session_decode — Decodes session data from a string
session_encode — Encodes the current session data as a string