JSessionStorageNone::open: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
Line 4: | Line 4: | ||
Open the SessionHandler backend. | Open the SessionHandler backend. | ||
<source lang="php"> | <source lang="php"> | ||
Line 38: | Line 38: | ||
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Session|Session]] | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Session|Session]] | ||
* [[API17:JSessionStorageNone::open|Other versions of JSessionStorageNone::open]] | * [[API17:JSessionStorageNone::open|Other versions of JSessionStorageNone::open]] | ||
===User contributed notes=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JSessionStorageNone::open | category=JSessionStorageNone::open | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* |
Latest revision as of 03:41, 25 March 2017
JSessionStorageNone::open
Description
Open the SessionHandler backend.
public function open (
$save_path
$session_name
)
Parameter | Type | Default | Description |
---|---|---|---|
$save_path | string | The path to the session object. | |
$session_name | string | The name of the session. |
- Returns boolean True on success, false otherwise.
- Defined on line 41 of libraries/joomla/session/storage/none.php
- Since
See also
JSessionStorageNone::open source code on BitBucket
Class JSessionStorageNone
Subpackage Session
- Other versions of JSessionStorageNone::open
User contributed notes
Code Examples