API17

Difference between revisions of "JSessionStorageWincache::write"

From Joomla! Documentation

(Layout updates)
m (→‎See also: moving preparation)
(3 intermediate revisions by 2 users not shown)
Line 8: Line 8:
 
<nowiki>[</nowiki>[[Description:JSessionStorageWincache::write|Edit Descripton]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[Description:JSessionStorageWincache::write|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
</span>
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public JSessionStorageWincache::write ($id, $session_data)
+
public function write (
 +
        $id
 +
        $session_data
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 27: Line 29:
 
|string
 
|string
 
|
 
|
|The session data.  
+
|The session data.
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' boolean True on success, false otherwise.
boolean True on success, false otherwise.
+
* '''Defined''' on line 82 of libraries/joomla/session/storage/wincache.php
===Defined in===
 
libraries/joomla/session/storage/wincache.php (line 84)
 
* see source code in [[jplatform:session/storage/wincache.php#cl-84|BitBucket]]
 
===Referenced by===
 
 
===See also===
 
===See also===
 +
* {{JVer|11.1}} '''JSessionStorageWincache::write source code''' on [[jplatform:session/storage/wincache.php#cl-74|BitBucket]]
 +
* {{JVer|11.1}} Class [[API17:JSessionStorageWincache|JSessionStorageWincache]]
 +
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Session|Session]]
 +
* [[API17:JSessionStorageWincache::write|Other versions of JSessionStorageWincache::write]]
 +
{{SeeAlso:JSessionStorageWincache::write}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JSessionStorageWincache::write|Edit See Also]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[SeeAlso:JSessionStorageWincache::write|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
</span>
* [[JSessionStorageWincache/11.1|JSessionStorageWincache]]
+
===User contributed notes===
* [[JSessionStorageWincache::write|Other versions of this method]]
 
{{SeeAlso:JSessionStorageWincache::write}}
 
===Examples===
 
 
<CodeExamplesForm />
 
<CodeExamplesForm />
 
<dpl>
 
<dpl>
Line 51: Line 51:
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JSessionStorageWincache]][[Category:JSessionStorageWincache::write]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Revision as of 21:31, 11 May 2013

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JSessionStorageWincache::write[edit]

Description[edit]

Write session data to the SessionHandler backend.

Template:Description:JSessionStorageWincache::write [Edit Descripton]

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 82 of libraries/joomla/session/storage/wincache.php

See also[edit]

Template:SeeAlso:JSessionStorageWincache::write [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />