API16

JSessionStorageEaccelerator/open: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Open the SessionHandler backend. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton...
 
m clean up
Line 2: Line 2:
Open the SessionHandler backend.
Open the SessionHandler backend.


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


{{Description:JSessionStorageEaccelerator/open}}
 
{{subst:Description:JSessionStorageEaccelerator/open}}


===Syntax===
===Syntax===
Line 42: Line 40:
</source>
</source>


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


===Examples===
===Examples===

Revision as of 14:24, 24 March 2017

Description

Open the SessionHandler backend.


{{subst:Description:JSessionStorageEaccelerator/open}}

Syntax

open($save_path, $session_name)
Parameter Name Default Value Description
$save_path $save_path The path to the session object.
$session_name $session_name The name of the session.

Returns

boolean True on success, false otherwise.

Defined in

libraries/joomla/session/storage/eaccelerator.php

Importing

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

Source Body

function open($save_path, $session_name)
{
        return true;
}


{{subst:SeeAlso:JSessionStorageEaccelerator/open}}

Examples

<CodeExamplesForm />