DatabaseSession provides methods to be used with Session.
$_table protected $_timeout protected integerConstructor. Looks at Session configuration information and sets up the session model.
__construct( array $config [] )
Constructor. Looks at Session configuration information and sets up the session model.
$config optional [] The configuration for this engine. It requires the 'model' key to be present corresponding to the Table to use for managing the sessions.
close( )
Method called on close of a database session.
SessionHandlerInterface::close() destroy( integer $id )
Method called on the destruction of a database session.
$id SessionHandlerInterface::destroy() gc( string $maxlifetime )
Helper function called on gc for database sessions.
$maxlifetime SessionHandlerInterface::gc() open( string $savePath , string $name )
Method called on open of a database session.
$savePath $name SessionHandlerInterface::open() read( integer|string $id )
Method used to read from a database session.
$id SessionHandlerInterface::read() write( integer $id , mixed $data )
Helper function called on write for database sessions.
$id $data SessionHandlerInterface::write()
© 2005–2016 The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
http://api.cakephp.org/3.2/class-Cake.Network.Session.DatabaseSession.html