mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Add "none" for session cache limiter.
Fix typo. # If cache limiter name is invalid, session module will # not use cache limiter. "none" is not defined, but it # will disable cache limitter. There are people who have # problem for diableing cache limiter :) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@68098 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
595ee91dfe
commit
8ca402949e
1 changed files with 6 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.74 $ -->
|
||||
<!-- $Revision: 1.75 $ -->
|
||||
<reference id="ref.session">
|
||||
<title>Session handling functions</title>
|
||||
<titleabbrev>Sessions</titleabbrev>
|
||||
|
@ -90,7 +90,7 @@ else {
|
|||
</para>
|
||||
<para>
|
||||
Use of $_SESSION (or $HTTP_SESSION_VARS with PHP 4.0.6 or less) is
|
||||
recommended for security and code readablility. With $_SESSION or
|
||||
recommended for security and code readablity. With $_SESSION or
|
||||
$HTTP_SESSION_VARS, there is no need to use
|
||||
session_register()/session_unregister()/session_is_registered()
|
||||
functions. Users can access session variable like a normal
|
||||
|
@ -375,9 +375,10 @@ To continue, <A HREF="nextpage.php?<?=SID?>">click here</A>
|
|||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>session.cache_limiter</literal> specifies cache control
|
||||
method to use for session pages (nocache/private/private_no_expire/public).
|
||||
Defaults to <literal>nocache</literal>.
|
||||
<literal>session.cache_limiter</literal> specifies cache
|
||||
control method to use for session pages
|
||||
(none/nocache/private/private_no_expire/public). Defaults to
|
||||
<literal>nocache</literal>.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
|
Loading…
Reference in a new issue