mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
1919601141
commit
9ff713ce96
1 changed files with 8 additions and 5 deletions
|
@ -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, <A HREF="nextpage.php?<?=SID?>">click here</A>
|
|||
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<p>";
|
|||
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<p>";
|
|||
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<p>";
|
|||
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<p>";
|
|||
</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>
|
||||
|
|
Loading…
Reference in a new issue