fix build.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@323479 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
TAKAGI Masahiro 2012-02-24 23:45:13 +00:00
parent 2741fa9f0f
commit 4df90a72c5

View file

@ -256,7 +256,7 @@ here</a>.
and <parameter>memcached</parameter> and can be set with <link linkend="ini.session.save-handler">session.save_handler</link>.
</para>
<para>
When the session starts, PHP will internally call the <parameter>open<parameter> handler followed by the <parameter>read</parameter> callback
When the session starts, PHP will internally call the <parameter>open</parameter> handler followed by the <parameter>read</parameter> callback
which should return an encoded string extactly as it was originally passed for storage.
Once the <parameter>read</parameter> callback returns the encoded string, PHP will decode it and then populate
the resulting array into the <varname>$_SESSION</varname> superglobal.
@ -265,7 +265,7 @@ here</a>.
When PHP shuts down (or when <function>session_write_close</function> is called),
PHP will internally encode the <varname>$_SESSION</varname> superglobal and pass this
along with the session ID to the the <parameter>write</parameter> callback.
After the <parameter>write<parameter> callback has finished, PHP will internally invoke the <parameter>close</parameter> callback handler.
After the <parameter>write</parameter> callback has finished, PHP will internally invoke the <parameter>close</parameter> callback handler.
</para>
<para>
When a session is specifically destroyed, PHP will call the
@ -275,7 +275,7 @@ here</a>.
PHP will call the <parameter>gc</parameter> callback from time to time to
expire any session records according to the set max lifetime of a session.
This routine should delete all records from persistent storage which were
last accessed longer than the <parameter>$lifetime<parameter>.
last accessed longer than the <parameter>$lifetime</parameter>.
</para>
</section>
</appendix>