API15:JSessionStorageXcache/read
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Read the data for a particular session identifier from the SessionHandler backend.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
read($id)
| Parameter Name | Default Value | Description |
|---|---|---|
| $id | $id The session identifier. |
Returns
string The session data.
Defined in
libraries/joomla/session/storage/xcache.php
Importing
jimport( 'joomla.session.storage.xcache' );
Source Body
function read($id) { $sess_id = 'sess_'.$id; //check if id exists if( !xcache_isset( $sess_id ) ){ return; } return (string)xcache_get($sess_id); }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
