API17

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.  


{{Description:JSessionStorageNone::write}}
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JSessionStorageNone::write|Edit Descripton]]<nowiki>]</nowiki>
</span>
<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/11.1|JSessionStorageNone]]
* {{JVer|11.1}} Class [[API17:JSessionStorageNone|JSessionStorageNone]]
* {{JVer|11.1}} Subpackage [[Subpackage_Session/11.1|Session]]
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Session|Session]]
* [[JSessionStorageNone::write|Other versions of JSessionStorageNone::write]]
* [[API17:JSessionStorageNone::write|Other versions of JSessionStorageNone::write]]
{{SeeAlso:JSessionStorageNone::write}}
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JSessionStorageNone::write|Edit See Also]]<nowiki>]</nowiki>
</span>
===User contributed notes===
===User contributed notes===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
noresultsheader=\n
noresultsheader=\n
category=JSessionStorageNone::write
category=JSessionStorageNone::write
category=CodeExample
namespace=CodeExample
category=MethodExample
category=MethodExample
include=*
include=*
Line 55: Line 51:
format= ,,,
format= ,,,
</dpl>
</dpl>
<noinclude>[[Category:JSessionStorageNone]][[Category:JSessionStorageNone::write]]</noinclude>
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 03:41, 25 March 2017

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

See also


User contributed notes

Code Examples