JSessionStorageNone::destroy: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
Line 4: | Line 4: | ||
Destroy the data for a particular session identifier in the SessionHandler backend. | Destroy the data for a particular session identifier in the SessionHandler backend. | ||
<source lang="php"> | <source lang="php"> | ||
Line 30: | Line 30: | ||
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Session|Session]] | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Session|Session]] | ||
* [[API17:JSessionStorageNone::destroy|Other versions of JSessionStorageNone::destroy]] | * [[API17:JSessionStorageNone::destroy|Other versions of JSessionStorageNone::destroy]] | ||
===User contributed notes=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JSessionStorageNone::destroy | category=JSessionStorageNone::destroy | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* |
Latest revision as of 03:41, 25 March 2017
JSessionStorageNone::destroy
Description
Destroy the data for a particular session identifier in the SessionHandler backend.
public function destroy ($id)
Parameter | Type | Default | Description |
---|---|---|---|
$id | string | The session identifier. |
- Returns boolean True on success, false otherwise.
- Defined on line 93 of libraries/joomla/session/storage/none.php
- Since
See also
JSessionStorageNone::destroy source code on BitBucket
Class JSessionStorageNone
Subpackage Session
- Other versions of JSessionStorageNone::destroy
User contributed notes
Code Examples