API17

JSessionStorage::write: Difference between revisions

From Joomla! Documentation

Doxiki2 (talk | contribs)
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.  


{{Description:JSessionStorage::write}}
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JSessionStorage::write|Edit Descripton]]<nowiki>]</nowiki>
</span>
===Synopsis===
<source lang="php">
<source lang="php">
public JSessionStorage->write ($id, $session_data)
public function write (
        $id
        $session_data
)
</source>
</source>
{| class="wikitable"
{| class="wikitable"
Line 30: Line 30:
|-
|-
|}
|}
===Returns===
* '''Returns''' boolean True on success, false otherwise.
boolean True on success, false otherwise.
* '''Defined''' on line 123 of libraries/joomla/session/storage.php
===Defined in===
libraries/joomla/session/storage.php
===Referenced by===
===See also===
===See also===
<span class="editsection" style="font-size:76%;">
* {{JVer|11.1}} '''JSessionStorage::write source code''' on [[jplatform:session/storage.php#cl-115|BitBucket]]
<nowiki>[</nowiki>[[SeeAlso:JSessionStorage::write|Edit See Also]]<nowiki>]</nowiki>
* {{JVer|11.1}} Class [[API17:JSessionStorage|JSessionStorage]]
</span>
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Session|Session]]
* [[JSessionStorage/11.1|JSessionStorage]]
* [[API17:JSessionStorage::write|Other versions of JSessionStorage::write]]
* [[JSessionStorage::write|Other versions of this method]]
 
{{SeeAlso:JSessionStorage::write}}
 
===Examples===
===User contributed notes===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
noresultsheader=\n
noresultsheader=\n
category=JSessionStorage::write
category=JSessionStorage::write
category=CodeExample
namespace=CodeExample
category=MethodExample
category=MethodExample
include=*
include=*
namespace=CodeExample
format= ,,,
format= ,,,
</dpl>
</dpl>
<noinclude>[[Category:JSessionStorage]][[Category:JSessionStorage::write]]</noinclude>
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 03:39, 25 March 2017

Joomla 11.1 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


User contributed notes

Code Examples