API16

JSessionStorage/close: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Close the SessionHandler backend. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]<...
 
m preparing for archive only
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
Close the SessionHandler backend.
Close the SessionHandler backend.


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


{{Description:JSessionStorage/close}}
 
 


===Syntax===
===Syntax===
Line 28: Line 26:
</source>
</source>


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


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

Latest revision as of 02:03, 25 March 2017

Description

Close the SessionHandler backend.



Syntax

close()


Returns

boolean True on success, false otherwise.

Defined in

libraries/joomla/session/storage.php

Importing

jimport( 'joomla.session.storage' );

Source Body

function close()
{
        return true;
}



Examples

Code Examples