Contributions are ready for review

[email protected]
Newsgroups php.doc.de
Message-ID <[email protected]>
Hello PHP DE Documentation team,

There are contributions within the online editor queue for this language.
Please review, then commit or delete these patches.

    Patches for review : 
    -----------------------

Modified: de/reference/xml/functions/utf8-decode.xml
By: Florian Berberich on 2019-02-12 07:09:49
===================================================================
--- de/reference/xml/functions/utf8-decode.xml
+++ de/reference/xml/functions/utf8-decode.xml
@@ -1,13 +1,12 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 344718 $ -->
+<!-- $Revision$ -->
 <!-- EN-Revision: 343495 Maintainer: wiesemann Status: ready -->
 
 <refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.utf8-decode">
  <refnamediv>
   <refname>utf8_decode</refname> 
   <refpurpose>
-   Konvertiert eine als UTF-8 kodierte ISO-8859-1-Zeichenkette in eine
-   einfache ISO-8859-1-Zeichenkette
+   Konvertiert eine UTF-8-kodierte Zeichenkette in eine ISO-8859-1-kodierte Zeichenkette
   </refpurpose>
  </refnamediv>
  


            => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=89708
            => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=89708
            
                                          ------------------------------------------------------------------

Modified: de/reference/strings/functions/echo.xml
By: Florian Berberich on 2019-02-13 13:37:30
===================================================================
--- de/reference/strings/functions/echo.xml
+++ de/reference/strings/functions/echo.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 344711 $ -->
-<!-- EN-Revision: 342214 Maintainer: sammywg Status: ready -->
+<!-- $Revision:$ -->
+<!-- EN-Revision: 346811 Maintainer: sammywg Status: ready -->
 
 <refentry xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://docbook.org/ns/docbook" xml:id="function.echo">
  <refnamediv>
@@ -88,46 +88,11 @@
 <?php
 echo "Hallo Welt";
 
-echo "Diese Ausgabe geht über
-mehrere Zeilen. Die Zeilenumbrüche werden
-ebenfalls ausgegeben.";
-
-echo "Diese Ausgabe geht übernmehrere Zeilen. Die Zeilenumbrüche werdennebenfalls ausgegeben.";
-
-echo "Escape Zeichen werden "so realisiert".";
-
-// Sie können Variablen innerhalb eines echo-Statements verwenden
-$foo = "foobar";
-$bar = "barbaz";
-
-echo "foo ist $foo"; // foo ist foobar
-
-// Sie können auch Arrays nutzen
-$bar = array("wert" => "foo");
-
-echo "Das ist {$bar['wert']} !"; // Das ist foo !
-
-// Wenn Sie einfache Anführungszeichen verwenden, wird der Name der Variable
-// anstelle ihres Inhalts ausgegeben
-echo 'foo ist $foo'; // foo ist $foo
-
-// Sie können auch ausschließlich Variablen ausgeben,
-// sofern Sie keine weiteren Zeichen ausgeben wollen
-echo $foo;          // foobar
-echo $foo,$bar;     // foobarbarbaz
-
 // Zeichenketten können entweder individuell als mehrere Argumente oder
 // miteinander verbunden als einzelnes Argument übergeben werden
 echo 'Dieser ', 'String ', 'besteht ', 'aus ', 'mehreren Parametern.', chr(10);
 echo 'Dieser  ' . 'String ' . 'wurde ' . 'mit ' . 'Stringverkettung erzeugt.' . "n";
 
-echo <<<END
-Hier wird die "here document"-Syntax verwendet, um mehrere
-Zeilen mit $variablen Interpolation auszugeben. Beachten Sie,
-dass das sich das "here document"-Endzeichen in einer Zeile
-mit nur einem Strichpunkt aber ohne Leerzeichen o.ä. stehen muss!
-END;
-
 // Da echo sich nicht wie eine Funktion verhält, ist der folgende Code ungültig.
 ($eine_variable) ? echo 'true' : echo 'false';
 


            => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=89742
            => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=89742
            
                                          ------------------------------------------------------------------

Modified: de/reference/strings/functions/sprintf.xml
By: Florian Berberich on 2019-02-13 13:39:30
===================================================================
--- de/reference/strings/functions/sprintf.xml
+++ de/reference/strings/functions/sprintf.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 346116 $ -->
-<!-- EN-Revision: 346102 Maintainer: sammywg Status: ready -->
+<!-- $Revision$ -->
+<!-- EN-Revision: 346810 Maintainer: sammywg Status: ready -->
 
 <refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.sprintf">
  <refnamediv>
@@ -141,7 +141,7 @@
            </member>
            <member>
             <literal>G</literal> - das Kürzere von <literal>%E</literal> und
-            <literal>%f</literal>.
+            <literal>%F</literal>.
            </member>
            <member>
             <literal>o</literal> - das Argument wird als Integer


            => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=89743
            => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=89743
            
                                          ------------------------------------------------------------------

Modified: de/language/predefined/exception.xml
By: Florian Berberich on 2019-02-13 13:45:24
===================================================================
--- de/language/predefined/exception.xml
+++ de/language/predefined/exception.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 345158 $ -->
+<!-- $Revision$ -->
 <!-- EN-Revision: 345149 Maintainer: sammywg Status: ready -->
 
 <phpdoc:exceptionref xml:id="class.exception"
@@ -22,7 +22,7 @@
    </para>
    <para>
     Vor PHP 7 implementierte <classname>Exception</classname> das
-    <classname>Throwable</classname>-Interface <emphasis>nicht</emphasis>.
+    <classname>Throwable</classname>-Interface nicht.
    </para>
   </section>
 <!-- }}} -->


            => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=89744
            => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=89744
            
                                          ------------------------------------------------------------------

Modified: de/reference/array/functions/array-splice.xml
By: Florian Berberich on 2019-02-13 13:47:57
===================================================================
--- de/reference/array/functions/array-splice.xml
+++ de/reference/array/functions/array-splice.xml
@@ -15,7 +15,7 @@
    <type>array</type><methodname>array_splice</methodname>
    <methodparam><type>array</type><parameter role="reference">input</parameter></methodparam>
    <methodparam><type>int</type><parameter>offset</parameter></methodparam>
-   <methodparam choice="opt"><type>int</type><parameter>length</parameter></methodparam>
+   <methodparam choice="opt"><type>int</type><parameter>length</parameter><initializer>count($input)</initializer></methodparam>
    <methodparam choice="opt"><type>mixed</type><parameter>replacement</parameter><initializer>array()</initializer></methodparam>
   </methodsynopsis>
   <para>


            => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=89745
            => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=89745
            
                                          ------------------------------------------------------------------

Modified: de/reference/datetime/functions/strtotime.xml
By: Florian Berberich on 2019-02-13 13:55:37
===================================================================
--- de/reference/datetime/functions/strtotime.xml
+++ de/reference/datetime/functions/strtotime.xml
@@ -132,14 +132,6 @@
         Die Angabe von Mikrosekunden ist erlaubt, wird aber ignoriert.
        </entry>
       </row>
-      <row>
-       <entry>4.4.0</entry>
-       <entry>
-        In PHP-Versionen vor 4.4.0 wird <literal>"next"</literal>
-        fälschlicherweise als +2 interpretiert. Eine einfache Lösung für dieses
-        Problem ist, explizit <literal>+1</literal> zu verwenden.
-       </entry>
-      </row>
      </tbody>
     </tgroup>
    </informaltable>


            => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=89746
            => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=89746
            
                                          ------------------------------------------------------------------

Modified: de/reference/filesystem/constants.xml
By: Florian Berberich on 2019-02-17 04:20:32
===================================================================
--- de/reference/filesystem/constants.xml
+++ de/reference/filesystem/constants.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 341342 $ -->
-<!-- EN-Revision: 338261 Maintainer: wiesemann Status: ready -->
+<!-- $Revision:$ -->
+<!-- EN-Revision: 346812 Maintainer: wiesemann Status: ready -->
 <appendix xml:id="filesystem.constants" xmlns="http://docbook.org/ns/docbook">
  &reftitle.constants;
  &extension.constants;
@@ -211,7 +211,7 @@
    <listitem>
     <simpara>
      Suche den Dateinamen <parameter>filename</parameter> im
-     <link linkend="ini.include-path">include_path</link> (seit PHP 5).
+     <link linkend="ini.include-path">include_path</link>
     </simpara>
    </listitem>
   </varlistentry>
@@ -243,7 +243,7 @@
    </term>
    <listitem>
     <simpara>
-     EOL-Zeichen entfernen (seit PHP 5).
+     EOL-Zeichen entfernen.
     </simpara>
    </listitem>
   </varlistentry>
@@ -254,7 +254,7 @@
    </term>
    <listitem>
     <simpara>
-     Leerzeilen überspringen (seit PHP 5).
+     Leerzeilen überspringen.
     </simpara>
    </listitem>
   </varlistentry>


            => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=89792
            => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=89792
            
                                          ------------------------------------------------------------------

Modified: de/reference/session/functions/session-set-save-handler.xml
By: Florian Berberich on 2019-02-17 04:26:29
===================================================================
--- de/reference/session/functions/session-set-save-handler.xml
+++ de/reference/session/functions/session-set-save-handler.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 344797 $ -->
-<!-- EN-Revision: 344795 Maintainer: samesch Status: ready -->
+<!-- $Revision:$ -->
+<!-- EN-Revision: 346816 Maintainer: samesch Status: ready -->
 
 <refentry xml:id="function.session-set-save-handler" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
@@ -209,6 +209,44 @@
    &return.success;
   </para>
  </refsect1>
+ 
+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>7.0.0</entry>
+      <entry>
+       Die optionalen Parameter <parameter>validate_sid</parameter> und
+       <parameter>update_timestamp</parameter> wurden hinzugefügt.
+      </entry>
+     </row>
+     <row>
+      <entry>5.5.1</entry>
+      <entry>
+       Der optionale Parameter <parameter>create_sid</parameter> wurde hinzugefügt.
+      </entry>
+     </row>
+     <row>
+      <entry>5.4.0</entry>
+      <entry>
+       <interfacename>SessionHandlerInterface</interfacename> zum Implementieren
+       von Session-Handlern und
+       <classname>SessionHandler</classname>, um interne PHP Session-Handler
+       bereitzustellen, hinzugefügt.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
 
  <refsect1 role="examples">
   &reftitle.examples;
@@ -383,44 +421,6 @@
   </warning>
  </refsect1>
 
- <refsect1 role="changelog">
-  &reftitle.changelog;
-  <informaltable>
-   <tgroup cols="2">
-    <thead>
-     <row>
-      <entry>&Version;</entry>
-      <entry>&Description;</entry>
-     </row>
-    </thead>
-    <tbody>
-     <row>
-      <entry>7.0.0</entry>
-      <entry>
-       Die optionalen Parameter <parameter>validate_sid</parameter> und
-       <parameter>update_timestamp</parameter> wurden hinzugefügt.
-      </entry>
-     </row>
-     <row>
-      <entry>5.5.1</entry>
-      <entry>
-       Der optionale Parameter <parameter>create_sid</parameter> wurde hinzugefügt.
-      </entry>
-     </row>
-     <row>
-      <entry>5.4.0</entry>
-      <entry>
-       <interfacename>SessionHandlerInterface</interfacename> zum Implementieren
-       von Session-Handlern und
-       <classname>SessionHandler</classname>, um interne PHP Session-Handler
-       bereitzustellen, hinzugefügt.
-      </entry>
-     </row>
-    </tbody>
-   </tgroup>
-  </informaltable>
- </refsect1>
-
  <refsect1 role="seealso">
   &reftitle.seealso;
   <para>


            => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=89793
            => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=89793
            
                                          ------------------------------------------------------------------

Modified: de/reference/filter/filters.xml
By: Florian Berberich on 2019-02-17 04:30:29
===================================================================
--- de/reference/filter/filters.xml
+++ de/reference/filter/filters.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 345536 $ -->
-<!-- EN-Revision: 345461 Maintainer: nobody Status: ready -->
+<!-- $Revision:$ -->
+<!-- EN-Revision: 345758 Maintainer: nobody Status: ready -->
 <!-- Reviewed: no -->
 
 <chapter xml:id="filter.filters" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -196,6 +196,15 @@
       </thead>
       <tbody>
        <row>
+        <entry>7.3.0</entry>
+        <entry>
+         Die explizite Verwendung von <constant>FILTER_FLAG_HOST_REQUIRED</constant> und
+         <constant>FILTER_FLAG_SCHEME_REQUIRED</constant> ist nun als deprecated (veraltet)
+         markiert. Stattdessen sollte <constant>FILTER_VALIDATE_URL</constant>
+         verwendet werden.
+        </entry>
+       </row>
+       <row>
         <entry>7.0.0</entry>
         <entry>
          <constant>FILTER_FLAG_HOSTNAME</constant> hinzugefügt


            => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=89794
            => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=89794
            
                                          ------------------------------------------------------------------

Modified: de/appendices/tokens.xml
By: Florian Berberich on 2019-02-17 13:52:16
===================================================================
--- de/appendices/tokens.xml
+++ de/appendices/tokens.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 344747 $ -->
+<!-- $Revision:$ -->
 <!-- EN-Revision: 344678 Maintainer: nobody Status: ready -->
 
 <appendix xml:id="tokens" xmlns="http://docbook.org/ns/docbook">
@@ -15,7 +15,7 @@
   nicht wissen, wird hier eine Tabelle mit diesen Bezeichnern, der PHP-Syntax
   und Verweisen zu den entsprechenden Stellen im Handbuch aufgeführt.
  </para>
-
+ 
  <note>
   <title>Verwendung der T_* Konstanten</title>
   <para>
@@ -25,7 +25,9 @@
    der konkrete Wert eines Tokens zwischen zwei PHP-Versionen ändern kann.
    Beispielsweise ist die <constant>T_FILE</constant> Konstante in PHP 5.3
    gleich <literal>365</literal>, wohingegen der selbe Wert in PHP 5.4
-   <constant>T_TRAIT</constant> entspricht. Daher sollte sich Code niemals
+   <constant>T_TRAIT</constant> entspricht und der Wert der Konstanten
+   <constant>T_FILE</constant> <literal>369</literal> ist. 
+   Daher sollte sich Code niemals
    direkt auf die Original-Werte, die einer PHP-Version X.Y.Z entnommen wurden,
    verlassen, damit eine gewisse Kompatibilität über mehrere PHP-Version
    gewährleistet ist. Statt dessen sollte der Code benutzerdefinierte Werte
@@ -34,7 +36,7 @@
    funktioniert, verwenden.
   </para>
  </note>
-
+ 
  <table>
   <title>Token</title>
   <tgroup cols="3">
@@ -60,17 +62,17 @@
      <entry><constant>T_ARRAY</constant></entry>
      <entry>array()</entry>
      <entry><function>array</function>, <link
-     linkend="language.types.array.syntax">Arraysyntax</link></entry>
+      linkend="language.types.array.syntax">Arraysyntax</link></entry>
     </row>
     <row>
      <entry><constant>T_ARRAY_CAST</constant></entry>
      <entry>(array)</entry>
      <entry><link linkend="language.types.typecasting">Typumwandlung</link></entry>
     </row>
-     <row>
+    <row>
      <entry><constant>T_AS</constant></entry>
-     <entry>as</entry>
-     <entry><link linkend="control-structures.foreach">foreach</link></entry>
+      <entry>as</entry>
+      <entry>&foreach;</entry>
     </row>
     <row>
      <entry><constant>T_BAD_CHARACTER</constant></entry>
@@ -183,7 +185,7 @@
      <entry>T_D<constant>T_DEC</constant>EC</entry>
      <entry>--</entry>
      <entry><link
-     linkend="language.operators.increment">Inkrement- bzw. Dekrementoperatoren</link></entry>
+      linkend="language.operators.increment">Inkrement- bzw. Dekrementoperatoren</link></entry>
     </row>
     <row>
      <entry><constant>T_DECLARE</constant></entry>
@@ -199,7 +201,7 @@
      <entry><constant>T_DIR</constant></entry>
      <entry>__DIR__</entry>
      <entry><link linkend="language.constants.predefined">Magische Konstanten</link>
-       (verfügbar ab PHP 5.3.0)</entry>
+      (verfügbar ab PHP 5.3.0)</entry>
     </row>
     <row>
      <entry><constant>T_DIV_EQUAL</constant></entry>
@@ -275,43 +277,43 @@
      <entry><constant>T_ENCAPSED_AND_WHITESPACE</constant></entry>
      <entry>" $a"</entry>
      <entry><link linkend="language.types.string.parsing">Konstanter Teil einer
-     Zeichenkette mit Variablen</link></entry>
+      Zeichenkette mit Variablen</link></entry>
     </row>
     <row>
      <entry><constant>T_ENDDECLARE</constant></entry>
      <entry>enddeclare</entry>
      <entry><link linkend="control-structures.declare">declare</link>, <link
-     linkend="control-structures.alternative-syntax">Alternative Syntax</link></entry>
+      linkend="control-structures.alternative-syntax">Alternative Syntax</link></entry>
     </row>
     <row>
      <entry><constant>T_ENDFOR</constant></entry>
      <entry>endfor</entry>
      <entry><link linkend="control-structures.for">for</link>, <link
-     linkend="control-structures.alternative-syntax">Alternative Syntax</link></entry>
+      linkend="control-structures.alternative-syntax">Alternative Syntax</link></entry>
     </row>
     <row>
      <entry><constant>T_ENDFOREACH</constant></entry>
      <entry>endforeach</entry>
-     <entry><link linkend="control-structures.foreach">foreach</link>, <link
-     linkend="control-structures.alternative-syntax">Alternative Syntax</link></entry>
+     <entry>&foreach;, <link
+      linkend="control-structures.alternative-syntax">Alternative Syntax</link></entry>
     </row>
     <row>
      <entry><constant>T_ENDIF</constant></entry>
      <entry>endif</entry>
      <entry><link linkend="control-structures.if">if</link>, <link
-     linkend="control-structures.alternative-syntax">Alternative Syntax</link></entry>
+      linkend="control-structures.alternative-syntax">Alternative Syntax</link></entry>
     </row>
     <row>
      <entry><constant>T_ENDSWITCH</constant></entry>
      <entry>endswitch</entry>
      <entry><link linkend="control-structures.switch">switch</link>, <link
-     linkend="control-structures.alternative-syntax">Alternative Syntax</link></entry>
+      linkend="control-structures.alternative-syntax">Alternative Syntax</link></entry>
     </row>
     <row>
      <entry><constant>T_ENDWHILE</constant></entry>
      <entry>endwhile</entry>
      <entry><link linkend="control-structures.while">while</link>, <link
-     linkend="control-structures.alternative-syntax">Alternative Syntax</link></entry>
+      linkend="control-structures.alternative-syntax">Alternative Syntax</link></entry>
     </row>
     <row>
      <entry><constant>T_END_HEREDOC</constant></entry>
@@ -332,7 +334,7 @@
      <entry><constant>T_EXTENDS</constant></entry>
      <entry>extends</entry>
      <entry><link linkend="language.oop5.basic.extends">extends</link>, <link
-     linkend="language.oop5">Klassen und Objekte</link></entry>
+      linkend="language.oop5">Klassen und Objekte</link></entry>
     </row>
     <row>
      <entry><constant>T_FILE</constant></entry>
@@ -357,7 +359,7 @@
     <row>
      <entry><constant>T_FOREACH</constant></entry>
      <entry>foreach</entry>
-     <entry><link linkend="control-structures.foreach">foreach</link></entry>
+     <entry>&foreach;</entry>
     </row>
     <row>
      <entry><constant>T_FUNCTION</constant></entry>
@@ -400,7 +402,7 @@
      <entry><constant>T_INC</constant></entry>
      <entry>++</entry>
      <entry><link
-     linkend="language.operators.increment">Inkrement- bzw. Dekrementoperatoren</link></entry>
+      linkend="language.operators.increment">Inkrement- bzw. Dekrementoperatoren</link></entry>
     </row>
     <row>
      <entry><constant>T_INCLUDE</constant></entry>
@@ -566,7 +568,7 @@
      <entry><constant>T_NUM_STRING</constant></entry>
      <entry>"$a[0]"</entry>
      <entry><link linkend="language.types.string.parsing">Numerischer Array-Index
-     innerhalb einer Zeichenkette</link></entry>
+      innerhalb einer Zeichenkette</link></entry>
     </row>
     <row>
      <entry><constant>T_OBJECT_CAST</constant></entry>
@@ -709,7 +711,7 @@
      <entry><constant>T_STRING_VARNAME</constant></entry>
      <entry>"${a</entry>
      <entry><link linkend="language.types.string.parsing.complex">komplexe
-     Variableninterpolationssyntax</link></entry>
+      Variableninterpolationssyntax</link></entry>
     </row>
     <row>
      <entry><constant>T_SWITCH</constant></entry>
@@ -750,7 +752,7 @@
      <entry><constant>T_USE</constant></entry>
      <entry>use</entry>
      <entry><link linkend="language.namespaces">Namensräume</link>
-     (verfügbar ab PHP 5.3.0)</entry>
+      (verfügbar ab PHP 5.3.0)</entry>
     </row>
     <row>
      <entry><constant>T_VAR</constant></entry>
@@ -766,7 +768,7 @@
      <entry><constant>T_WHILE</constant></entry>
      <entry>while</entry>
      <entry><link linkend="control-structures.while">while</link>, <link
-     linkend="control-structures.do.while">do..while</link></entry>
+      linkend="control-structures.do.while">do..while</link></entry>
     </row>
     <row>
      <entry><constant>T_WHITESPACE</constant></entry>


            => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=89798
            => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=89798
            
                                          ------------------------------------------------------------------

Modified: de/chapters/tutorial.xml
By: Florian Berberich on 2019-02-17 13:56:36
===================================================================
--- de/chapters/tutorial.xml
+++ de/chapters/tutorial.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 341595 $ -->
+<!-- $Revision:$ -->
 <!-- EN-Revision: 338342 Maintainer: cmb Status: ready -->
  <chapter xml:id="tutorial" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
   <info><title>Ein kleines Tutorial</title></info>
@@ -535,7 +535,7 @@
        <link linkend="ini.register-globals">register_globals</link>.
        Die empfohlene Methode, auf diese Werte zuzugreifen, ist, die oben genannten
        superglobalen Arrays zu verwenden. Ältere Skripte, Bücher und Tutorials gehen
-       eventuell davon aus, dass diese Einstellung auf <emphasis>on</emphasis> steht.
+       eventuell davon aus, dass diese Einstellung auf <literal>on</literal> steht.
        Wäre die Einstellung z.B. on, dann wäre die Variable <varname>$id</varname> aus
        dem URL <literal>http://www.example.com/foo.php?id=42</literal> verfügbar.
        Unabhängig davon, ob on oder off, ist <varname>$_GET['id']</varname> immer


            => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=89799
            => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=89799
            
                                          ------------------------------------------------------------------




--
https://edit.php.net/
This email is send automatically by the Php Docbook Online Editor.
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.