Move the "unimportant" &note.language-construct; note to the bottom.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@128313 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Philip Olson 2003-05-21 22:37:51 +00:00
parent 9bff141792
commit 23c409d0e6
5 changed files with 25 additions and 21 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.70 $ -->
<!-- $Revision: 1.71 $ -->
<chapter id="control-structures">
<title>Control Structures</title>
@ -1031,7 +1031,6 @@ print_r (profile (TRUE));
The <function>require</function> statement includes and evaluates
the specific file.
</simpara>
&note.language-construct;
<simpara>
<function>require</function> includes and evaluates a specific file.
Detailed information on how this inclusion works is described in the
@ -1082,7 +1081,11 @@ require ('somefile.txt');
<function>require</function> itself happens only once.
</simpara>
</note>
&note.language-construct;
&warn.no-win32-fopen-wrapper;
<simpara>
See also <function>include</function>, <function>require_once</function>,
<function>include_once</function>, <function>eval</function>,
@ -1097,7 +1100,6 @@ require ('somefile.txt');
The <function>include</function> statement includes and evaluates
the specified file.
</simpara>
&note.language-construct;
<simpara>
The documentation below also applies to <function>require</function>.
The two constructs are identical in every way except how they handle
@ -1325,6 +1327,8 @@ echo $bar; // prints 1
<function>include</function> along with
<link linkend="ref.outcontrol">Output Control Functions</link>.
</simpara>
&note.language-construct;
<simpara>
See also <function>require</function>, <function>require_once</function>,

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.9 $ -->
<!-- $Revision: 1.10 $ -->
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.2 -->
<refentry id="function.echo">
<refnamediv>
@ -22,7 +22,6 @@
with it. In fact, if you want to pass more than one parameter
to echo, you must not enclose the parameters within parentheses.
</para>
&note.language-construct;
<para>
<example>
<title><function>echo</function> examples</title>
@ -94,6 +93,9 @@ I have <?=$foo?> foo.
Knowledge Base Article: <ulink url="&url.echo-print;">&url.echo-print;
</ulink>
</simpara>
&note.language-construct;
<simpara>
See also
<function>print</function>,

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.2 -->
<refentry id="function.print">
<refnamediv>
@ -20,7 +20,6 @@
language construct) so you are not required to use parentheses
with it.
</para>
&note.language-construct;
<example>
<title><function>print</function> examples</title>
<programlisting role="php">
@ -66,6 +65,9 @@ END;
Knowledge Base Article: <ulink url="&url.echo-print;">&url.echo-print;
</ulink>
</simpara>
&note.language-construct;
<simpara>
See also <function>echo</function>, <function>printf</function>,
and <function>flush</function>.

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.8 $ -->
<!-- $Revision: 1.9 $ -->
<!-- splitted from ./en/functions/var.xml, last change in rev 1.2 -->
<refentry id="function.isset">
<refnamediv>
@ -14,12 +14,7 @@
<methodparam choice="opt"><type>mixed</type><parameter>var</parameter></methodparam>
<methodparam choice="opt"><parameter>...</parameter></methodparam>
</methodsynopsis>
<note>
<para>
<function>isset</function> is a language construct.
</para>
</note>
&note.language-construct;
<simpara>
Returns &true; if <parameter>var</parameter> exists; &false; otherwise.
</simpara>
@ -96,6 +91,9 @@ var_dump( array_key_exists('hello', $a) ); // TRUE
</programlisting>
</informalexample>
</para>
&note.language-construct;
<simpara>
See also <function>empty</function>,
<function>unset</function>, <function>defined</function>,

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/var.xml, last change in rev 1.2 -->
<refentry id="function.unset">
<refnamediv>
@ -14,12 +14,7 @@
<methodparam choice="opt"><type>mixed</type><parameter>var</parameter></methodparam>
<methodparam choice="opt"><parameter>...</parameter></methodparam>
</methodsynopsis>
<note>
<para>
<function>unset</function> is a language construct.
</para>
</note>
&note.language-construct;
<para>
<function>unset</function> destroys the specified variables. Note
that in PHP 3, <function>unset</function> will always return &true;
@ -159,6 +154,9 @@ foo();
</programlisting>
</informalexample>
</para>
&note.language-construct;
<para>
See also <function>isset</function> and
<function>empty</function>.