API16

JSessionStorageXcache/read: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 4: Line 4:




{{subst:Description:JSessionStorageXcache/read}}
 


===Syntax===
===Syntax===
Line 44: Line 44:




{{subst:SeeAlso:JSessionStorageXcache/read}}
 


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=read
  category=read
  category=JSessionStorageXcache
  category=JSessionStorageXcache
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>

Latest revision as of 02:05, 25 March 2017

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/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);
}



Examples

Code Examples