dams Tue Jul 3 02:55:04 2001 EDT
Modified files:
/phpdoc/en/functions session.xml
Log:
Added link to resources appendix.TRUE/FALSE literalized.
Index: phpdoc/en/functions/session.xml
diff -u phpdoc/en/functions/session.xml:1.41 phpdoc/en/functions/session.xml:1.42
--- phpdoc/en/functions/session.xml:1.41 Mon Jul 2 05:35:57 2001
+++ phpdoc/en/functions/session.xml Tue Jul 3 02:55:03 2001
@@ -347,7 +347,7 @@
the current one based on the session id being passed via a GET
variable or a cookie).</simpara>
<simpara>
- This function always returns true.
+ This function always returns <literal>TRUE</literal>.
</simpara>
<note>
<para>
@@ -375,7 +375,8 @@
associated with the current session.
</simpara>
<simpara>
- This function returns true on success and false on failure to destroy
+ This function returns <literal>TRUE</literal> on success and
+ <literal>FALSE</literal> on failure to destroy
the session data.
</simpara>
</refsect1>
@@ -548,7 +549,7 @@
variable named by it with the current session.
</para>
<para>
- This function returns true when the variable is successfully
+ This function returns <literal>TRUE</literal> when the variable is successfully
registered with the session.
</para>
<note>
@@ -560,6 +561,8 @@
session is restored. PHP functions that return a resource are
identified by having a return type of
<literal>resource</literal> in their function definitions.
+ You may also find a list of resource-creating fonctions in
+ the <link linkend="resources">appendices</link>.
</para>
</note>
<note>
@@ -591,7 +594,7 @@
current session.
</para>
<para>
- This function returns true when the variable is successfully
+ This function returns <literal>TRUE</literal> when the variable is successfully
unregistered from the session.
<note>
<para>
@@ -640,7 +643,7 @@
</funcprototype>
</funcsynopsis>
<para>
- <function>session_is_registered</function> returns true if there
+ <function>session_is_registered</function> returns <literal>TRUE</literal> if
+there
is a variable with the name <parameter>name</parameter>
registered in the current session.
<note>