betz Sun Nov 17 08:52:05 2002 EDT
Modified files:
/phpdoc/en/reference/session/functions session-cache-limiter.xml
session-get-cookie-params.xml
session-id.xml
session-name.xml
session-save-path.xml
session-set-cookie-params.xml
session-set-save-handler.xml
Log:
See also's to related ini-settings added.
Index: phpdoc/en/reference/session/functions/session-cache-limiter.xml
diff -u phpdoc/en/reference/session/functions/session-cache-limiter.xml:1.3
phpdoc/en/reference/session/functions/session-cache-limiter.xml:1.4
--- phpdoc/en/reference/session/functions/session-cache-limiter.xml:1.3 Fri Sep 6
01:35:35 2002
+++ phpdoc/en/reference/session/functions/session-cache-limiter.xml Sun Nov 17
+08:52:05 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/session.xml, last change in rev 1.62 -->
<refentry id="function.session-cache-limiter">
<refnamediv>
@@ -14,8 +14,8 @@
</methodsynopsis>
<para>
<function>session_cache_limiter</function> returns the name of the
- current cache limiter. If <parameter>cache_limiter</parameter> is
- specified, the name of the current cache limiter is changed to the
+ current cache limiter. If <parameter>cache_limiter</parameter>
+ is specified, the name of the current cache limiter is changed to the
new value.
</para>
<para>
@@ -41,17 +41,18 @@
</note>
<para>
The cache limiter is reset to the default value stored in
- <literal>session.cache_limiter</literal> at request startup time. Thus,
- you need to call <function>session_cache_limiter</function> for every
+ <link linkend="ini.session.cache-limiter">session.cache_limiter</link>
+ at request startup time. Thus, you need to call
+ <function>session_cache_limiter</function> for every
request (and before <function>session_start</function> is called).
</para>
<example>
- <title><function>session_cache_limiter</function> examples</title>
+ <title><function>session_cache_limiter</function> example</title>
<programlisting role="php">
<![CDATA[
<?php
-# set the cache limiter to 'private'
+/* set the cache limiter to 'private' */
session_cache_limiter('private');
$cache_limiter = session_cache_limiter();
@@ -61,6 +62,10 @@
]]>
</programlisting>
</example>
+ <para>
+ See also the <link
+linkend="ini.session.cache-limiter">session.cache_limiter</link>
+ configuration directive.
+ </para>
</refsect1>
</refentry>
Index: phpdoc/en/reference/session/functions/session-get-cookie-params.xml
diff -u phpdoc/en/reference/session/functions/session-get-cookie-params.xml:1.2
phpdoc/en/reference/session/functions/session-get-cookie-params.xml:1.3
--- phpdoc/en/reference/session/functions/session-get-cookie-params.xml:1.2 Wed
Apr 17 02:43:58 2002
+++ phpdoc/en/reference/session/functions/session-get-cookie-params.xml Sun Nov 17
+08:52:05 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/session.xml, last change in rev 1.8 -->
<refentry id="function.session-get-cookie-params">
<refnamediv>
@@ -41,6 +41,14 @@
</simpara>
</listitem>
</itemizedlist>
+ </para>
+ <para>
+ See also the configuration directives
+ <link linkend="ini.session.cookie-lifetime">session.cookie_lifetime</link>,
+ <link linkend="ini.session.cookie-path">session.cookie_path</link>,
+ <link linkend="ini.session.cookie-domain">session.cookie_domain</link>,
+ <link linkend="ini.session.cookie-secure">session.cookie_secure</link>, and
+ <function>session_set_cookie_params</function>.
</para>
</refsect1>
</refentry>
Index: phpdoc/en/reference/session/functions/session-id.xml
diff -u phpdoc/en/reference/session/functions/session-id.xml:1.3
phpdoc/en/reference/session/functions/session-id.xml:1.4
--- phpdoc/en/reference/session/functions/session-id.xml:1.3 Thu May 30 07:59:16
2002
+++ phpdoc/en/reference/session/functions/session-id.xml Sun Nov 17 08:52:05
+2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/session.xml, last change in rev 1.2 -->
<refentry id="function.session-id">
<refnamediv>
@@ -32,7 +32,9 @@
linkend="ref.session">Session handling</link>.
</para>
<para>
- See also <function>session_start</function>.
+ See also <function>session_start</function>,
+ <function>session_set_save_handler</function>, and
+ <link linkend="ini.session.save-handler">session.save_handler</link>.
</para>
</refsect1>
</refentry>
Index: phpdoc/en/reference/session/functions/session-name.xml
diff -u phpdoc/en/reference/session/functions/session-name.xml:1.2
phpdoc/en/reference/session/functions/session-name.xml:1.3
--- phpdoc/en/reference/session/functions/session-name.xml:1.2 Wed Apr 17 02:43:59
2002
+++ phpdoc/en/reference/session/functions/session-name.xml Sun Nov 17 08:52:05
+2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/session.xml, last change in rev 1.2 -->
<refentry id="function.session-name">
<refnamediv>
@@ -33,7 +33,7 @@
<![CDATA[
<?php
-// set the session name to WebsiteID
+/* set the session name to WebsiteID */
$previous_name = session_name("WebsiteID");
@@ -42,6 +42,10 @@
]]>
</programlisting>
</example>
+ <para>
+ See also the <link linkend="ini.session.name">session.name</link>
+ configuration directive.
+ </para>
</refsect1>
</refentry>
Index: phpdoc/en/reference/session/functions/session-save-path.xml
diff -u phpdoc/en/reference/session/functions/session-save-path.xml:1.2
phpdoc/en/reference/session/functions/session-save-path.xml:1.3
--- phpdoc/en/reference/session/functions/session-save-path.xml:1.2 Wed Apr 17
02:44:00 2002
+++ phpdoc/en/reference/session/functions/session-save-path.xml Sun Nov 17 08:52:05
+2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/session.xml, last change in rev 1.2 -->
<refentry id="function.session-save-path">
<refnamediv>
@@ -16,6 +16,8 @@
<function>session_save_path</function> returns the path of the current
directory used to save session data. If <parameter>path</parameter>
is specified, the path to which data is saved will be changed.
+ <function>session_save_path</function> needs to be called before
+ <function>session_start</function> for that purpose.
<note>
<para>
On some operating systems, you may want to specify a path on a
@@ -24,6 +26,10 @@
ext2fs.
</para>
</note>
+ </para>
+ <para>
+ See also the <link linkend="ini.session.save-path">session.save_path</link>
+ configuration directive.
</para>
</refsect1>
</refentry>
Index: phpdoc/en/reference/session/functions/session-set-cookie-params.xml
diff -u phpdoc/en/reference/session/functions/session-set-cookie-params.xml:1.2
phpdoc/en/reference/session/functions/session-set-cookie-params.xml:1.3
--- phpdoc/en/reference/session/functions/session-set-cookie-params.xml:1.2 Wed
Apr 17 02:44:00 2002
+++ phpdoc/en/reference/session/functions/session-set-cookie-params.xml Sun Nov 17
+08:52:05 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/session.xml, last change in rev 1.2 -->
<refentry id="function.session-set-cookie-params">
<refnamediv>
@@ -27,6 +27,14 @@
4.0.4.
</para>
</note>
+ <para>
+ See also the configuration directives
+ <link linkend="ini.session.cookie-lifetime">session.cookie_lifetime</link>,
+ <link linkend="ini.session.cookie-path">session.cookie_path</link>,
+ <link linkend="ini.session.cookie-domain">session.cookie_domain</link>,
+ <link linkend="ini.session.cookie-secure">session.cookie_secure</link>, and
+ <function>session_get_cookie_params</function>.
+ </para>
</refsect1>
</refentry>
Index: phpdoc/en/reference/session/functions/session-set-save-handler.xml
diff -u phpdoc/en/reference/session/functions/session-set-save-handler.xml:1.5
phpdoc/en/reference/session/functions/session-set-save-handler.xml:1.6
--- phpdoc/en/reference/session/functions/session-set-save-handler.xml:1.5 Wed
Oct 2 02:20:44 2002
+++ phpdoc/en/reference/session/functions/session-set-save-handler.xml Sun Nov 17
+08:52:05 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/session.xml, last change in rev 1.23 -->
<refentry id="function.session-set-save-handler">
<refnamediv>
@@ -122,6 +122,10 @@
]]>
</programlisting>
</example>
+ </para>
+ <para>
+ See also the <link linkend="ini.session.save-handler">session.save_handler</link>
+ configuration directive.
</para>
</refsect1>
</refentry>
--
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php