API16:JSessionStorageApc/destroy
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Destroy the data for a particular session identifier in the SessionHandler backend.
Description:JSessionStorageApc/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/apc.php
Importing
jimport( 'joomla.session.storage.apc' );
Source Body
function destroy($id) { $sess_id = 'sess_'.$id; return apc_delete($sess_id); }
[Edit See Also] SeeAlso:JSessionStorageApc/destroy
Examples
<CodeExamplesForm />
