JSessionStorageXcache/write: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Write session data to the SessionHandler backend.
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JSessionStorageXcache/write|Edit ... |
m clean up |
||
| Line 2: | Line 2: | ||
Write session data to the SessionHandler backend. | Write session data to the SessionHandler backend. | ||
{{Description:JSessionStorageXcache/write}} | |||
{{subst:Description:JSessionStorageXcache/write}} | |||
===Syntax=== | ===Syntax=== | ||
| Line 43: | Line 41: | ||
</source> | </source> | ||
{{subst:SeeAlso:JSessionStorageXcache/write}} | |||
{{SeeAlso:JSessionStorageXcache/write}} | |||
===Examples=== | ===Examples=== | ||
Revision as of 14:25, 24 March 2017
Description
Write session data to the SessionHandler backend.
{{subst:Description:JSessionStorageXcache/write}}
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") );
}
{{subst:SeeAlso:JSessionStorageXcache/write}}
Examples
<CodeExamplesForm />