PHP Classes

Session Handler: This class implements a session but does not use MySQL as its storage mechanism like other session handling classes do.

Recommend this page to a friend!
  Info   View files View files (6)   DownloadInstall with Composer Download .zip   Reputation   Support forum (1)   Blog    
Ratings Unique User Downloads Download Rankings
StarStarStar 48%Total: 6,137 This week: 1All time: 366 This week: 560Down
Version License Categories
1.0Unspecified (ask ...User Management
Description 

Author

This class implements a session but does not use MySQL as its storage mechanism like other session handling classes do. Instead it uses a directory structure where the session is identified as a directory and keys are files inside of that directory. Each file contains the value assoiciated with the key identified by the file name.

This session handler requires the use of non-persistent cookies which means it will create cookies on the user's machine, but the cookies will be destroyed when the user closes their browser. This could be an issue because there are those people who have cookies turned off. If you use this class, you may want to detect whether the user has cookies enabled or disabled first. Then use the getURLSessionString function and place what is returned into your URL query string if cookies are turned off.

I have added a global variable outside of this class that creates a new instance of the session class. This was an attempt to make the session handling "hidden". Instead of creating an instance of this class, you can use the global $SESSION variable.

Note that this class is not necessary if you are using PHP4 because there is already session handling incorporated into PHP4. See the session handling section on http://www.php.net but you can certainly use it if you would like.

This class requires an ini file reader that can be found on http://phpclasses.upperdesign.com. It also requires some utility functions that I have written and is another file in this class.

Usage of this class is pretty simple. Since the global $SESSION object is created for you, there is no reason to create another instance of the object. Use $SESSION->register to register a key/value pair with the session handler for the correct session. Use $SESSION->retrieve to retrieve a value from the session for a given key. If you need to get rid of everything in the session, call $SESSION->destroy which deletes the existing session and creates a new one. If you want to only delete a key from the existing session, call the $SESSION->deleteKey function.

Picture of Scott Christensen
Name: Scott Christensen <contact>
Classes: 4 packages by
Country: United States United States
Age: 51
All time rank: 19522 in United States United States
Week rank: 416 Down46 in United States United States Down

  Files folder image Files  
File Role Description
Plain text file cSession.inc Class Session handler class
Accessible without login Plain text file hSession.inc Aux. header file for session class
Accessible without login Plain text file hUtility.inc Aux. header file for utility functions
Accessible without login Plain text file mUtility.inc Aux. utility functions for session handler
Accessible without login Plain text file Session.ini Data ini file for session class
Accessible without login Plain text file TestSession.php3 Example test script for session handler

 Version Control Unique User Downloads Download Rankings  
 0%
Total:6,137
This week:1
All time:366
This week:560Down
 User Ratings  
 
 All time
Utility:79%StarStarStarStar
Consistency:87%StarStarStarStarStar
Documentation:-
Examples:-
Tests:-
Videos:-
Overall:48%StarStarStar
Rank:2931