API16

JSessionStorageEaccelerator/read: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Read the data for a particular session identifier from the SessionHandler backend. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:...
 
m preparing for archive only
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
Read the data for a particular session identifier from the SessionHandler backend.
Read the data for a particular session identifier from the SessionHandler backend.


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JSessionStorageEaccelerator/read|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JSessionStorageEaccelerator/read}}
 
 


===Syntax===
===Syntax===
Line 39: Line 37:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JSessionStorageEaccelerator/read|Edit See Also]]<nowiki>]</nowiki>
 
</span>
{{SeeAlso:JSessionStorageEaccelerator/read}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=read
  category=read
  category=JSessionStorageEaccelerator
  category=JSessionStorageEaccelerator
  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/eaccelerator.php

Importing

jimport( 'joomla.session.storage.eaccelerator' );

Source Body

function read($id)
{
        $sess_id = 'sess_'.$id;
        return (string) eaccelerator_get($sess_id);
}



Examples

Code Examples