API15:JSessionStorageApc/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/apc.php
Importing
jimport( 'joomla.session.storage.apc' );
Source Body
function write($id, $session_data)
{
$sess_id = 'sess_'.$id;
return apc_store($sess_id, $session_data, ini_get("session.gc_maxlifetime"));
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples