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.
|
|
| Name: |
Session Handler |
| Base name: |
227 |
| Description: |
This class implements a session but does not use MySQL as its storage mechanism like other session handling classes do. |
| Version: |
- |
| PHP version: |
- |
| License: |
Unspecified (ask the author) |
| All time users: |
6071 users |
| All time rank: |
313 |
| Week users: |
0 users |
| Week rank: |
2380  |
| |
|
| Ratings | Utility |
Consistency |
Documentation |
Examples |
Tests |
Videos |
Overall |
Rank |
| All time: |
Good (85.0%) |
Good (95.0%) |
- |
- |
- |
- |
Not sure (52.0%) |
1404 |
| Month: |
Not yet rated by the users |
| |
Applications that use this class |
|
|
No application links were specified for this class.

If you know an application of this package, send a message to the
author to add a link here.
| Link |
Description |
| cIniFileReader.inc |
ini file reader class required for the session handler to work |
| |
Files |
|
|