API16:JSessionStorageXcache/write
From Joomla! Documentation
Description
Write session data to the SessionHandler backend.
Syntax
write($id, $session_data)
Parameter Name | Default Value | Description |
---|---|---|
$id | $id The session identifier. | |
$session_data | $session_data The session data. |
Returns
boolean True on success, false otherwise.
Defined in
libraries/joomla/session/storage/xcache.php
Importing
jimport( 'joomla.session.storage.xcache' );
Source Body
function write($id, $session_data)
{
$sess_id = 'sess_'.$id;
return xcache_set($sess_id, $session_data, ini_get("session.gc_maxlifetime") );
}
Examples
Code Examples