JSessionStorage::write: Difference between revisions
From Joomla! Documentation
Bulk upload by Doxiki2 |
m preparing for archive only |
||
| (6 intermediate revisions by 2 users 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 | public function write ( | ||
$id | |||
$session_data | |||
) | |||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 30: | Line 30: | ||
|- | |- | ||
|} | |} | ||
* '''Returns''' boolean True on success, false otherwise. | |||
boolean True on success, false otherwise. | * '''Defined''' on line 123 of libraries/joomla/session/storage.php | ||
libraries/joomla/session/storage.php | |||
===See also=== | ===See also=== | ||
* {{JVer|11.1}} '''JSessionStorage::write source code''' on [[jplatform:session/storage.php#cl-115|BitBucket]] | |||
* {{JVer|11.1}} Class [[API17:JSessionStorage|JSessionStorage]] | |||
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Session|Session]] | |||
* | * [[API17:JSessionStorage::write|Other versions of JSessionStorage::write]] | ||
* [[JSessionStorage::write|Other versions of | |||
===Examples=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JSessionStorage::write | category=JSessionStorage::write | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
namespace=CodeExample | |||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category: | <noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude> | ||
Latest revision as of 03:39, 25 March 2017
JSessionStorage::write
Description
Write session data to the SessionHandler backend.
public function write (
$id
$session_data
)
| Parameter | Type | Default | Description |
|---|---|---|---|
| $id | string | The session identifier. | |
| $session_data | string | The session data. |
- Returns boolean True on success, false otherwise.
- Defined on line 123 of libraries/joomla/session/storage.php
See also
JSessionStorage::write source code on BitBucket
Class JSessionStorage
Subpackage Session- Other versions of JSessionStorage::write
User contributed notes
Code Examples