API16:JSessionStorage/read
From Joomla! Documentation
Description
Read the data for a particular session identifier from the SessionHandler backend.
Syntax
read($id)
| Parameter Name | Default Value | Description |
|---|---|---|
| $id | $id The session identifier. |
Returns
string The session data.
Defined in
libraries/joomla/session/storage.php
Importing
jimport( 'joomla.session.storage' );
Source Body
function read($id)
{
return;
}
Examples
Code Examples