API16

JSession/ destruct: Difference between revisions

From Joomla! Documentation

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


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


{{Description:JSession/__destruct}}
 
 


===Syntax===
===Syntax===
Line 25: Line 23:
</source>
</source>


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


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

Latest revision as of 02:03, 25 March 2017

Description

Session object destructor



Syntax

__destruct()


Defined in

libraries/joomla/session/session.php

Importing

jimport( 'joomla.session.session' );

Source Body

public function __destruct()
{
        $this->close();
}



Examples

Code Examples