svn: /phpdoc/de/trunk/reference/array/functions/ array-diff.xml array-rand.xml each.xml shuffle.xml
[email protected] (Patrick Eigensatz)
| Newsgroups | php.doc.de |
|---|---|
| Message-ID | <[email protected]> |
patrickeigensatz Mon, 11 Sep 2017 12:56:27 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=343066 Log: Reviewed Sven's patch on array functions (diff, rand, each, shuffle) -- Provided by anonymous 82372 ([email protected]) Changed paths: U phpdoc/de/trunk/reference/array/functions/array-diff.xml U phpdoc/de/trunk/reference/array/functions/array-rand.xml U phpdoc/de/trunk/reference/array/functions/each.xml U phpdoc/de/trunk/reference/array/functions/shuffle.xml Modified: phpdoc/de/trunk/reference/array/functions/array-diff.xml =================================================================== --- phpdoc/de/trunk/reference/array/functions/array-diff.xml 2017-09-11 12:45:38 UTC (rev 343065) +++ phpdoc/de/trunk/reference/array/functions/array-diff.xml 2017-09-11 12:56:27 UTC (rev 343066) @@ -101,7 +101,7 @@ <note> <para> Zwei Elemente werden nur dann als gleich angesehen, wenn - <literal>(string) $elem1 === (string) $elem2</literal>. In Worten: + <literal>(string) $elem1 === (string) $elem2</literal>. In anderen Worten: Wenn die String-Repräsentation die gleiche ist. </para> </note> Modified: phpdoc/de/trunk/reference/array/functions/array-rand.xml =================================================================== --- phpdoc/de/trunk/reference/array/functions/array-rand.xml 2017-09-11 12:45:38 UTC (rev 343065) +++ phpdoc/de/trunk/reference/array/functions/array-rand.xml 2017-09-11 12:56:27 UTC (rev 343066) @@ -2,7 +2,7 @@ <!-- $Revision$ --> <!-- EN-Revision: 339348 Maintainer: gerdtsteltner Status: ready --> <!-- CREDITS: tom --> -<refentry xml:id="function.array-rand" xmlns="http://docbook.org/ns/docbook"> +<refentry xml:id="function.array-rand" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <refnamediv> <refname>array_rand</refname> <refpurpose>Liefert einen oder mehrere zufällige Einträge eines Arrays</refpurpose> @@ -67,6 +67,12 @@ </thead> <tbody> <row> + <entry>7.1.0</entry> + <entry> + <link linkend="migration71.incompatible.rand-srand-aliases">Zur Erzeugung der Zufallszahlen kommt intern nun der <link xlink:href="&url.mersenne;">Mersenne-Primzahlen</link>-Zufallsgenerator statt der vorherigen libc-rand-Funktion zum Einsatz.</link> + </entry> + </row> + <row> <entry>5.2.10</entry> <entry> Das Ergebnisarray wird nicht mehr gemischt. Modified: phpdoc/de/trunk/reference/array/functions/each.xml =================================================================== --- phpdoc/de/trunk/reference/array/functions/each.xml 2017-09-11 12:45:38 UTC (rev 343065) +++ phpdoc/de/trunk/reference/array/functions/each.xml 2017-09-11 12:56:27 UTC (rev 343066) @@ -8,6 +8,11 @@ <refpurpose>Liefert das aktuelle Paar (Schlüssel und Wert) eines Arrays und rückt den Arrayzeiger vor</refpurpose> </refnamediv> + + <refsynopsisdiv> + &warn.deprecated.function-7-2-0; + </refsynopsisdiv> + <refsect1 role="description"> &reftitle.description; <methodsynopsis> Modified: phpdoc/de/trunk/reference/array/functions/shuffle.xml =================================================================== --- phpdoc/de/trunk/reference/array/functions/shuffle.xml 2017-09-11 12:45:38 UTC (rev 343065) +++ phpdoc/de/trunk/reference/array/functions/shuffle.xml 2017-09-11 12:56:27 UTC (rev 343066) @@ -2,7 +2,7 @@ <!-- $Revision$ --> <!-- EN-Revision: 339490 Maintainer: hholzgra Status: ready --> <!-- CREDITS: tom, simp --> -<refentry xml:id="function.shuffle" xmlns="http://docbook.org/ns/docbook"> +<refentry xml:id="function.shuffle" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <refnamediv> <refname>shuffle</refname> <refpurpose>Mischt die Elemente eines Arrays</refpurpose> @@ -42,11 +42,36 @@ &return.success; </para> </refsect1> + + <refsect1 role="changelog"> + &reftitle.changelog; + <para> + <informaltable> + <tgroup cols="2"> + <thead> + <row> + <entry>&Version;</entry> + <entry>&Beschreibung;</entry> + </row> + </thead> + <tbody> + <row> + <entry>7.1.0</entry> + <entry> + <link linkend="migration71.incompatible.rand-srand-aliases">Zur Erzeugung der Zufallszahlen kommt intern nun der <link xlink:href="&url.mersenne;">Mersenne-Primzahlen</link>-Zufallsgenerator statt der vorherigen libc-rand-Funktion zum Einsatz.</link> + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + </refsect1> + <refsect1 role="examples"> &reftitle.examples; <para> <example> - <title><function>shuffle</function> Beispiel</title> + <title><function>shuffle</function>-Beispiel</title> <programlisting role="php"> <![CDATA[ <?php