JSessionStorageEaccelerator/open: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 4: | Line 4: | ||
===Syntax=== | ===Syntax=== | ||
| Line 41: | Line 41: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=open | category=open | ||
category=JSessionStorageEaccelerator | category=JSessionStorageEaccelerator | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
Latest revision as of 02:05, 25 March 2017
Description
Open the SessionHandler backend.
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;
}
Examples
Code Examples