From 23c409d0e66b201f92e9a23e1287f8948f792c94 Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Wed, 21 May 2003 22:37:51 +0000 Subject: [PATCH] Move the "unimportant" ¬e.language-construct; note to the bottom. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@128313 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 10 +++++++--- reference/strings/functions/echo.xml | 6 ++++-- reference/strings/functions/print.xml | 6 ++++-- reference/var/functions/isset.xml | 12 +++++------- reference/var/functions/unset.xml | 12 +++++------- 5 files changed, 25 insertions(+), 21 deletions(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index a0f87acc10..91bd297bbc 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -1031,7 +1031,6 @@ print_r (profile (TRUE)); The require statement includes and evaluates the specific file. - ¬e.language-construct; require includes and evaluates a specific file. Detailed information on how this inclusion works is described in the @@ -1082,7 +1081,11 @@ require ('somefile.txt'); require itself happens only once. + + ¬e.language-construct; + &warn.no-win32-fopen-wrapper; + See also include, require_once, include_once, eval, @@ -1097,7 +1100,6 @@ require ('somefile.txt'); The include statement includes and evaluates the specified file. - ¬e.language-construct; The documentation below also applies to require. The two constructs are identical in every way except how they handle @@ -1325,6 +1327,8 @@ echo $bar; // prints 1 include along with Output Control Functions. + + ¬e.language-construct; See also require, require_once, diff --git a/reference/strings/functions/echo.xml b/reference/strings/functions/echo.xml index 9441aa60ef..02e73749de 100644 --- a/reference/strings/functions/echo.xml +++ b/reference/strings/functions/echo.xml @@ -1,5 +1,5 @@ - + @@ -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. - ¬e.language-construct; <function>echo</function> examples @@ -94,6 +93,9 @@ I have foo. Knowledge Base Article: &url.echo-print; + + ¬e.language-construct; + See also print, diff --git a/reference/strings/functions/print.xml b/reference/strings/functions/print.xml index 65baed723b..5a905f2fcc 100644 --- a/reference/strings/functions/print.xml +++ b/reference/strings/functions/print.xml @@ -1,5 +1,5 @@ - + @@ -20,7 +20,6 @@ language construct) so you are not required to use parentheses with it. - ¬e.language-construct; <function>print</function> examples @@ -66,6 +65,9 @@ END; Knowledge Base Article: &url.echo-print; + + ¬e.language-construct; + See also echo, printf, and flush. diff --git a/reference/var/functions/isset.xml b/reference/var/functions/isset.xml index 838de87ac8..ed185b85f3 100644 --- a/reference/var/functions/isset.xml +++ b/reference/var/functions/isset.xml @@ -1,5 +1,5 @@ - + @@ -14,12 +14,7 @@ mixedvar ... - - - isset is a language construct. - - - ¬e.language-construct; + Returns &true; if var exists; &false; otherwise. @@ -96,6 +91,9 @@ var_dump( array_key_exists('hello', $a) ); // TRUE + + ¬e.language-construct; + See also empty, unset, defined, diff --git a/reference/var/functions/unset.xml b/reference/var/functions/unset.xml index 618a3f1624..c5b520b546 100644 --- a/reference/var/functions/unset.xml +++ b/reference/var/functions/unset.xml @@ -1,5 +1,5 @@ - + @@ -14,12 +14,7 @@ mixedvar ... - - - unset is a language construct. - - - ¬e.language-construct; + unset destroys the specified variables. Note that in PHP 3, unset will always return &true; @@ -159,6 +154,9 @@ foo(); + + ¬e.language-construct; + See also isset and empty.