\JSessionStorageApc
APC session storage handler for PHP
Synopsis
class JSessionStorageApc
extends JSessionStorage
{
- // Inherited members from JSessionStorage
- protected $instances;
- // methods
- public void __construct()
- public string read()
- public boolean write()
- public boolean destroy()
- public static boolean isSupported()
- // Inherited methods from JSessionStorage
- public void __construct()
- public static JSessionStorage getInstance()
- public void register()
- public boolean open()
- public boolean close()
- public string read()
- public boolean write()
- public boolean destroy()
- public boolean gc()
- public static boolean isSupported()
- public static boolean test()
Hierarchy
Extends
Members
protected
- $instances — array
Methods
public
- __construct() — Constructor
- destroy() — Destroy the data for a particular session identifier in the SessionHandler backend.
- isSupported() — Test to see if the SessionHandler is available.
- read() — Read the data for a particular session identifier from the SessionHandler backend.
- write() — Write session data to the SessionHandler backend.
Inherited from JSessionStorage
public
- close() — Close the SessionHandler backend.
- destroy() — Destroy the data for a particular session identifier in the SessionHandler backend.
- gc() — Garbage collect stale sessions from the SessionHandler backend.
- getInstance() — Returns a session storage handler object, only creating it if it doesn't already exist.
- isSupported() — Test to see if the SessionHandler is available.
- open() — Open the SessionHandler backend.
- read() — Read the data for a particular session identifier from the SessionHandler backend.
- register() — Register the functions of this class with PHP's session handler
- test() — Test to see if the SessionHandler is available.
- write() — Write session data to the SessionHandler backend.