API15:JSessionStorageDatabase/write
From Joomla! Documentation
Description
Write session data to the SessionHandler backend.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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/database.php
Importing
jimport( 'joomla.session.storage.database' );
Source Body
function write($id, $session_data)
{
$db =& JFactory::getDBO();
if(!$db->connected()) {
return false;
}
$session = & JTable::getInstance('session');
$session->load($id);
$session->data = $session_data;
$session->store();
return true;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples