Added link to resources appendix.

TRUE/FALSE literalized.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@50508 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Damien Seguy 2001-07-03 06:55:03 +00:00
parent 1919601141
commit 9ff713ce96

View file

@ -347,7 +347,7 @@ To continue, <A HREF="nextpage.php?<?=SID?>">click here</A>
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 @@ To continue, &lt;A HREF="nextpage.php?&lt;?=SID?&gt;"&gt;click here&lt;/A&gt;
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 @@ echo "The previous session name was $previous_name&lt;p&gt;";
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 @@ echo "The previous session name was $previous_name&lt;p&gt;";
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 @@ echo "The previous session name was $previous_name&lt;p&gt;";
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 @@ echo "The previous session name was $previous_name&lt;p&gt;";
</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>