API15

JSessionStorageEaccelerator/open

From Joomla! Documentation

< API15:JSessionStorageEaccelerator
Revision as of 17:12, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Open the SessionHandler backend. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Open the SessionHandler backend.

[Edit Descripton]

Template:Description:JSessionStorageEaccelerator/open

Syntax[edit]

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[edit]

boolean True on success, false otherwise.

Defined in[edit]

libraries/joomla/session/storage/eaccelerator.php

Importing[edit]

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

Source Body[edit]

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

[Edit See Also] Template:SeeAlso:JSessionStorageEaccelerator/open

Examples[edit]

<CodeExamplesForm />