mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
session_readonly didn't make it into CVS up to now
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@53535 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
64a791706c
commit
2c9bf8e5ae
1 changed files with 9 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
<!-- $Revision: 1.48 $ -->
|
||||
<!-- $Revision: 1.49 $ -->
|
||||
<reference id="ref.session">
|
||||
<title>Session handling functions</title>
|
||||
<titleabbrev>Sessions</titleabbrev>
|
||||
|
@ -969,19 +969,17 @@ echo "The cache limiter is now set to $cache_limiter<p>";
|
|||
</note>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
<!--
|
||||
This function does not exist in sources, in CVS.
|
||||
Is that RFU? dams@php.net
|
||||
<refentry id="function.session-end">
|
||||
|
||||
<refentry id="function.session-write-close">
|
||||
<refnamediv>
|
||||
<refname>session_end</refname>
|
||||
<refname>session_write_close</refname>
|
||||
<refpurpose>Write session data and end session</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>session_end</function></funcdef>
|
||||
<funcdef>void <function>session_write_close</function></funcdef>
|
||||
<void/>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
|
@ -990,7 +988,7 @@ echo "The cache limiter is now set to $cache_limiter<p>";
|
|||
</para>
|
||||
<para>
|
||||
Session data is usually stored after your script terminated
|
||||
without the need to call <function>session_end</function>, but as
|
||||
without the need to call <function>session_write_close</function>, but as
|
||||
session data is locked to prevent concurrent writes only one
|
||||
script may operate on a session at any time. When using framesets
|
||||
together with sessions you will experience the frames loading one
|
||||
|
@ -998,12 +996,15 @@ echo "The cache limiter is now set to $cache_limiter<p>";
|
|||
laod all the frames by ending the session as soon as all changes
|
||||
to session variables are done.
|
||||
</para>
|
||||
<!-- commented out until final decision on implementation
|
||||
<para>
|
||||
See also: <function>session_readonly</function>.
|
||||
</para>
|
||||
-->
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<!-- commented out until final decision on implementation
|
||||
<refentry id="function.session-readonly">
|
||||
<refnamediv>
|
||||
<refname>session_readonly</refname>
|
||||
|
|
Loading…
Reference in a new issue