API16

JSessionStorage/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<nowiki>]</n...
 
m preparing for archive only
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
Open the SessionHandler backend.
Open the SessionHandler backend.


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


{{Description:JSessionStorage/open}}
 
 


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


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


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=open
  category=open
  category=JSessionStorage
  category=JSessionStorage
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>

Latest revision as of 02:04, 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.php

Importing

jimport( 'joomla.session.storage' );

Source Body

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



Examples

Code Examples