API16

JSessionStorageXcache/destroy: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 4: Line 4:




{{subst:Description:JSessionStorageXcache/destroy}}
 


===Syntax===
===Syntax===
Line 43: Line 43:




{{subst:SeeAlso:JSessionStorageXcache/destroy}}
 


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

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

Importing

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

Source Body

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

        if (!xcache_isset($sess_id)){
                return true;
        }

        return xcache_unset($sess_id);
}



Examples

Code Examples