API16

JSessionStorageApc/destroy: Difference between revisions

From Joomla! Documentation

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


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


{{Description:JSessionStorageApc/destroy}}
 
 


===Syntax===
===Syntax===
Line 39: Line 37:
</source>
</source>


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


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

Latest revision as of 02:04, 25 March 2017

Description

Destroy the data for a particular session identifier in the SessionHandler backend.



Syntax

destroy($id)
Parameter Name Default Value Description
$id $id The session identifier.

Returns

boolean True on success, false otherwise.

Defined in

libraries/joomla/session/storage/apc.php

Importing

jimport( 'joomla.session.storage.apc' );

Source Body

function destroy($id)
{
        $sess_id = 'sess_'.$id;
        return apc_delete($sess_id);
}



Examples

Code Examples