JSessionStorageNone::write: Difference between revisions
From Joomla! Documentation
m JoomlaWikiBot moved page JSessionStorageNone::write/11.1 to API17:JSessionStorageNone::write without leaving a redirect: Robot: Moved page |
m preparing for archive only |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 4: | Line 4: | ||
Write session data to the SessionHandler backend. | Write session data to the SessionHandler backend. | ||
<source lang="php"> | <source lang="php"> | ||
public function write ( | public function write ( | ||
| Line 37: | Line 35: | ||
===See also=== | ===See also=== | ||
* {{JVer|11.1}} '''JSessionStorageNone::write source code''' on [[jplatform:session/storage/none.php#cl-71|BitBucket]] | * {{JVer|11.1}} '''JSessionStorageNone::write source code''' on [[jplatform:session/storage/none.php#cl-71|BitBucket]] | ||
* {{JVer|11.1}} Class [[JSessionStorageNone | * {{JVer|11.1}} Class [[API17:JSessionStorageNone|JSessionStorageNone]] | ||
* {{JVer|11.1}} Subpackage [[Subpackage_Session | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Session|Session]] | ||
* [[JSessionStorageNone::write|Other versions of JSessionStorageNone::write]] | * [[API17:JSessionStorageNone::write|Other versions of JSessionStorageNone::write]] | ||
===User contributed notes=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JSessionStorageNone::write | category=JSessionStorageNone::write | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
| Line 55: | Line 51: | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category: | <noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude> | ||
Latest revision as of 03:41, 25 March 2017
JSessionStorageNone::write
Description
Write session data to the SessionHandler backend.
public function write (
$id
$data
)
| Parameter | Type | Default | Description |
|---|---|---|---|
| $id | string | The session identifier. | |
| $data | string | The session data. |
- Returns boolean True on success, false otherwise.
- Defined on line 79 of libraries/joomla/session/storage/none.php
- Since

See also
JSessionStorageNone::write source code on BitBucket
Class JSessionStorageNone
Subpackage Session- Other versions of JSessionStorageNone::write
User contributed notes
Code Examples