API17

Difference between revisions of "JSessionStorageDatabase::open"

From Joomla! Documentation

(Layout updates)
m (→‎See also: moving preparation)
(3 intermediate revisions by 2 users not shown)
Line 8: Line 8:
 
<nowiki>[</nowiki>[[Description:JSessionStorageDatabase::open|Edit Descripton]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[Description:JSessionStorageDatabase::open|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
</span>
===Since===
 
{{JVer|11.1 }}
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public JSessionStorageDatabase::open ($save_path, $session_name)
+
public function open (
 +
        $save_path
 +
        $session_name
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 32: Line 32:
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' boolean True on success, false otherwise.
boolean True on success, false otherwise.
+
* '''Defined''' on line 33 of libraries/joomla/session/storage/database.php
===Defined in===
+
* '''Since''' {{JVer|11.1 }}
libraries/joomla/session/storage/database.php (line 33)
 
* see source code in [[jplatform:session/storage/database.php#cl-33|BitBucket]]
 
===Referenced by===
 
 
===See also===
 
===See also===
 +
* {{JVer|11.1}} '''JSessionStorageDatabase::open source code''' on [[jplatform:session/storage/database.php#cl-25|BitBucket]]
 +
* {{JVer|11.1}} Class [[API17:JSessionStorageDatabase|JSessionStorageDatabase]]
 +
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Session|Session]]
 +
* [[API17:JSessionStorageDatabase::open|Other versions of JSessionStorageDatabase::open]]
 +
{{SeeAlso:JSessionStorageDatabase::open}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JSessionStorageDatabase::open|Edit See Also]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[SeeAlso:JSessionStorageDatabase::open|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
</span>
* [[JSessionStorageDatabase/11.1|JSessionStorageDatabase]]
+
===User contributed notes===
* [[JSessionStorageDatabase::open|Other versions of this method]]
 
{{SeeAlso:JSessionStorageDatabase::open}}
 
===Examples===
 
 
<CodeExamplesForm />
 
<CodeExamplesForm />
 
<dpl>
 
<dpl>
Line 53: Line 52:
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JSessionStorageDatabase]][[Category:JSessionStorageDatabase::open]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Revision as of 21:29, 11 May 2013

The "API17" 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.

Joomla 11.1 JSessionStorageDatabase::open[edit]

Description[edit]

Open the SessionHandler backend.

Template:Description:JSessionStorageDatabase::open [Edit Descripton]

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 33 of libraries/joomla/session/storage/database.php
  • Since Joomla 11.1

See also[edit]

Template:SeeAlso:JSessionStorageDatabase::open [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />