API16

API16:JSessionStorage/destroy

From Joomla! Documentation

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.php

Importing

jimport( 'joomla.session.storage' );

Source Body

function destroy($id)
{
        return true;
}



Examples

Code Examples