svn: /phpdoc/de/trunk/ install/fpm/configuration.xml language/control-structures/break.xml language/control-structures/switch.xml reference/array/functions/array-filter.xml reference/sockets/functions/socket-get-option.xml

[email protected] (Christoph Michael Becker)
Newsgroups php.doc.de
Message-ID <[email protected]>
cmb                                      Wed, 13 Jun 2018 17:23:56 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=345131

Log:
Sync with EN

Changed paths:
    U   phpdoc/de/trunk/install/fpm/configuration.xml
    U   phpdoc/de/trunk/language/control-structures/break.xml
    U   phpdoc/de/trunk/language/control-structures/switch.xml
    U   phpdoc/de/trunk/reference/array/functions/array-filter.xml
    U   phpdoc/de/trunk/reference/sockets/functions/socket-get-option.xml

Modified: phpdoc/de/trunk/install/fpm/configuration.xml
===================================================================
--- phpdoc/de/trunk/install/fpm/configuration.xml	2018-06-13 16:59:02 UTC (rev 345130)
+++ phpdoc/de/trunk/install/fpm/configuration.xml	2018-06-13 17:23:56 UTC (rev 345131)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 345095 Maintainer: nikic Status: ready -->
+<!-- EN-Revision: 345093 Maintainer: nikic Status: ready -->
 <!-- Credits: Jens-Andre Koch -->

 <sect1 xml:id="install.fpm.configuration" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">

Modified: phpdoc/de/trunk/language/control-structures/break.xml
===================================================================
--- phpdoc/de/trunk/language/control-structures/break.xml	2018-06-13 16:59:02 UTC (rev 345130)
+++ phpdoc/de/trunk/language/control-structures/break.xml	2018-06-13 17:23:56 UTC (rev 345131)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 337069 Maintainer: hholzgra  Status: ready -->
+<!-- EN-Revision: 345105 Maintainer: hholzgra  Status: ready -->
 <!-- Rev-Revision: 1.1 Reviewer: sammywg -->

 <sect1 xml:id="control-structures.break" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -36,14 +36,14 @@
 $i = 0;
 while (++$i) {
     switch ($i) {
-    case 5:
-        echo "Bei 5<br />\n";
-        break 1;  /* Verlässt nur das switch. */
-    case 10:
-        echo "Bei 10; brich ab<br />\n";
-        break 2;  /* Verlässt das switch und das while. */
-    default:
-        break;
+        case 5:
+            echo "Bei 5<br />\n";
+            break 1;  /* Verlässt nur das switch. */
+        case 10:
+            echo "Bei 10; brich ab<br />\n";
+            break 2;  /* Verlässt das switch und das while. */
+        default:
+            break;
     }
 }
 ?>

Modified: phpdoc/de/trunk/language/control-structures/switch.xml
===================================================================
--- phpdoc/de/trunk/language/control-structures/switch.xml	2018-06-13 16:59:02 UTC (rev 345130)
+++ phpdoc/de/trunk/language/control-structures/switch.xml	2018-06-13 17:23:56 UTC (rev 345131)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 339487 Maintainer: cmb Status: ready -->
+<!-- EN-Revision: 345106 Maintainer: cmb Status: ready -->

 <sect1 xml:id="control-structures.switch" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <title><literal>switch</literal></title>
@@ -162,13 +162,13 @@
 <![CDATA[
 <?php
 switch ($i) {
-case 0:
-case 1:
-case 2:
-    echo "i ist kleiner als 3, aber nicht negativ";
-    break;
-case 3:
-    echo "i ist 3";
+    case 0:
+    case 1:
+    case 2:
+        echo "i ist kleiner als 3, aber nicht negativ";
+        break;
+    case 3:
+        echo "i ist 3";
 }
 ?>
 ]]>

Modified: phpdoc/de/trunk/reference/array/functions/array-filter.xml
===================================================================
--- phpdoc/de/trunk/reference/array/functions/array-filter.xml	2018-06-13 16:59:02 UTC (rev 345130)
+++ phpdoc/de/trunk/reference/array/functions/array-filter.xml	2018-06-13 17:23:56 UTC (rev 345131)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 345094 Maintainer: simp Status: ready -->
+<!-- EN-Revision: 345095 Maintainer: simp Status: ready -->
 <!-- CREDITS: tom -->
 <refentry xml:id="function.array-filter" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>

Modified: phpdoc/de/trunk/reference/sockets/functions/socket-get-option.xml
===================================================================
--- phpdoc/de/trunk/reference/sockets/functions/socket-get-option.xml	2018-06-13 16:59:02 UTC (rev 345130)
+++ phpdoc/de/trunk/reference/sockets/functions/socket-get-option.xml	2018-06-13 17:23:56 UTC (rev 345131)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 338330 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 345096 Maintainer: nobody Status: ready -->

 <refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.socket-get-option">
  <refnamediv>
@@ -91,6 +91,15 @@
           </entry>
          </row>
          <row>
+          <entry><constant>SO_REUSEPORT</constant></entry>
+          <entry>
+           Gibt an, ob lokale Ports wiederverwendet werden können.
+          </entry>
+          <entry>
+           <type>int</type>
+          </entry>
+         </row>
+         <row>
           <entry>SO_KEEPALIVE</entry>
           <entry>
            Gibt an, ob Verbindungen durch periodische Aussendungen von
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.