[PHP-DOC] cvs: phpdoc /en/language control-structures.xml From: Egon Schmid (eschmid <email protected>)
Date: 08/06/00

eschmid Sun Aug 6 12:28:33 2000 EDT

  Modified files:
    /phpdoc/en/language control-structures.xml
  Log:
  Some cosmetic.
  
Index: phpdoc/en/language/control-structures.xml
diff -u phpdoc/en/language/control-structures.xml:1.12 phpdoc/en/language/control-structures.xml:1.13
--- phpdoc/en/language/control-structures.xml:1.12 Tue Jul 11 01:08:04 2000
+++ phpdoc/en/language/control-structures.xml Sun Aug 6 12:28:33 2000
@@ -547,34 +547,32 @@
  
   <sect1 id="control-structures.break">
    <title><literal>break</literal></title>
-
    <simpara>
     <literal>break</literal> ends execution of the current
     <literal>for</literal>, <literal>while</literal>, or
     <literal>switch</literal> structure.
    </simpara>
-
    <simpara>
     <literal>break</literal> accepts an optional numeric argument
     which tells it how many nested enclosing structures are to be
     broken out of.
    </simpara>
-
    <para>
     <informalexample>
      <programlisting role="php">
-$arr = array( 'one', 'two', 'three', 'four', 'stop', 'five' );
-while ( list( , $val ) = each( $arr ) ) {
- if ( $val == 'stop' ) {
- break; /* You could also write 'break 1;' here. */
- }
- echo "$val&lt;br&gt;\n";
+$arr = array ('one', 'two', 'three', 'four', 'stop', 'five');
+while (list (, $val) = each ($arr)) {
+ if ($val == 'stop') {
+ break; /* You could also write 'break 1;' here. */
+ }
+ echo "$val&lt;br&gt;\n";
 }
 
 /* Using the optional argument. */
+
 $i = 0;
-while ( ++$i ) {
- switch ( $i ) {
+while (++$i) {
+ switch ($i) {
     case 5:
         echo "At 5&lt;br&gt;\n";
         break 1; /* Exit only the switch. */
@@ -606,10 +604,10 @@
     <informalexample>
      <programlisting role="php">
 while (list ($key, $value) = each ($arr)) {
- if (!($key % 2)) { // skip odd members
- continue;
- }
- do_something_odd ($value);
+ if (!($key % 2)) { // skip odd members
+ continue;
+ }
+ do_something_odd ($value);
 }
 
 $i = 0;
@@ -618,8 +616,8 @@
     while (1) {
         echo "&nbsp;&nbsp;Middle&lt;br&gt;\n";
         while (1) {
- echo "&nbsp;&nbsp;Inner&lt;br&gt;\n";
- continue 3;
+ echo "&nbsp;&nbsp;Inner&lt;br&gt;\n";
+ continue 3;
         }
         echo "This never gets output.&lt;br&gt;\n";
     }
@@ -1057,38 +1055,32 @@
   <sect1 id="function.require-once">
    <title><function>require_once</function></title>
    <simpara>
- TODO
- The <function>require_once</function> statement replaces itself with
- the specified file, much like the C preprocessor's
+ TODO: The <function>require_once</function> statement replaces
+ itself with the specified file, much like the C preprocessor's
     <literal>#include</literal> works.
    </simpara>
    <para>
     Seel also: <function>require</function>,
- <function>include</function>, <function>include_once</function>,
- <function>get_required_files</function>,
- <function>get_included_files</function>
+ <function>include</function>, <function>include_once</function>,
+ <function>get_required_files</function>,
+ <function>get_included_files</function>
    </para>
   </sect1>
   
   <sect1 id="function.include-once">
    <title><function>include_once</function></title>
    <simpara>
- TODO
- The <function>include_once</function> statement replaces itself with
- the specified file, much like the C preprocessor's
+ TODO: The <function>include_once</function> statement replaces
+ itself with the specified file, much like the C preprocessor's
     <literal>#include</literal> works.
    </simpara>
    <para>
     Seel also: <function>require</function>,
- <function>include</function>, <function>require_once</function>,
- <function>get_required_files</function>,
- <function>get_included_files</function>
+ <function>include</function>, <function>require_once</function>,
+ <function>get_required_files</function>,
+ <function>get_included_files</function>
    </para>
   </sect1>
-
-
-
-
  
  </chapter>