API16

JSessionStorageXcache/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 clean up
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:JSessionStorageXcache/destroy|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JSessionStorageXcache/destroy}}
 
{{subst:Description:JSessionStorageXcache/destroy}}


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


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


===Examples===
===Examples===

Revision as of 14:25, 24 March 2017

Description

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


{{subst:Description:JSessionStorageXcache/destroy}}

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);
}


{{subst:SeeAlso:JSessionStorageXcache/destroy}}

Examples

<CodeExamplesForm />