svn: /phpdoc/de/trunk/ install/unix/apache1.xml language/predefined/exceptions.xml reference/json/constants.xml reference/json/functions/json-decode.xml reference/json/functions/json-encode.xml reference/misc/functions/define.xml reference/password/functions/password-hash.xml reference/password/functions/password-verify.xml reference/pcre/functions/preg-quote.xml reference/strings/functions/str-getcsv.xml reference/url/functions/base64-encode.xml

[email protected] (Christoph Michael Becker)
Newsgroups php.doc.de
Message-ID <[email protected]>
cmb                                      Wed, 03 Oct 2018 13:31:46 +0000

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

Log:
Sync with EN

Changed paths:
    U   phpdoc/de/trunk/install/unix/apache1.xml
    U   phpdoc/de/trunk/language/predefined/exceptions.xml
    U   phpdoc/de/trunk/reference/json/constants.xml
    U   phpdoc/de/trunk/reference/json/functions/json-decode.xml
    U   phpdoc/de/trunk/reference/json/functions/json-encode.xml
    U   phpdoc/de/trunk/reference/misc/functions/define.xml
    U   phpdoc/de/trunk/reference/password/functions/password-hash.xml
    U   phpdoc/de/trunk/reference/password/functions/password-verify.xml
    U   phpdoc/de/trunk/reference/pcre/functions/preg-quote.xml
    U   phpdoc/de/trunk/reference/strings/functions/str-getcsv.xml
    U   phpdoc/de/trunk/reference/url/functions/base64-encode.xml
svn-diffs-345769.txt (text/x-diff, 12 KB)
Modified: phpdoc/de/trunk/install/unix/apache1.xml
===================================================================
--- phpdoc/de/trunk/install/unix/apache1.xml	2018-10-02 17:25:33 UTC (rev 345768)
+++ phpdoc/de/trunk/install/unix/apache1.xml	2018-10-03 13:31:46 UTC (rev 345769)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 343221 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 345755 Maintainer: samesch Status: ready -->

    <sect1 xml:id="install.unix.apache" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
     <title>Apache 1.3.x auf Unix-Systemen</title>
@@ -13,7 +13,7 @@
     <para>
      Die Anweisungen, die Sie zum unten in Zeile 10 abgebildeten
      <command>configure</command>-Aufruf hinzufügen können, können Sie aus der
-     <link linkend="configure">Liste von grundlegenden
+     <link linkend="configure.about">Liste von grundlegenden
      Configure-Optionen</link> und aus den für Erweiterungen spezifiscen
      Optionen, die auf den jeweiligen Handbuchseiten beschrieben sind,
      auswählen. Um sicherzustellen, dass die Anweisungen nicht inkorrekt sind,

Modified: phpdoc/de/trunk/language/predefined/exceptions.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/exceptions.xml	2018-10-02 17:25:33 UTC (rev 345768)
+++ phpdoc/de/trunk/language/predefined/exceptions.xml	2018-10-03 13:31:46 UTC (rev 345769)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 342629 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 345757 Maintainer: sammywg Status: ready -->

 <part xml:id="reserved.exceptions" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <title>Vordefinierte Exceptions</title>
@@ -21,6 +21,7 @@
  &language.predefined.arithmeticerror;
  &language.predefined.assertionerror;
  &language.predefined.divisionbyzeroerror;
+ &language.predefined.compileerror;
  &language.predefined.parseerror;
  &language.predefined.typeerror;
 </part>

Modified: phpdoc/de/trunk/reference/json/constants.xml
===================================================================
--- phpdoc/de/trunk/reference/json/constants.xml	2018-10-02 17:25:33 UTC (rev 345768)
+++ phpdoc/de/trunk/reference/json/constants.xml	2018-10-03 13:31:46 UTC (rev 345769)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 342548 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 345719 Maintainer: sammywg Status: ready -->

 <appendix xml:id="json.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  &reftitle.constants;
@@ -344,6 +344,29 @@
    </listitem>
   </varlistentry>
  </variablelist>
+
+ <para>
+  Die folgenden Konstanten können kombiniert (verodert) werden, um Optionen für
+  <function>json_decode</function> und <function>json_encode</function> zu
+  bilden.
+ </para>
+ <variablelist>
+  <varlistentry xml:id="constant.json-throw-on-error">
+   <term>
+    <constant>JSON_THROW_ON_ERROR</constant>
+    (<type>integer</type>)
+   </term>
+   <listitem>
+    <simpara>
+     Wirft im Fehlerfall eine <classname>JsonException</classname> anstatt den
+     globalen Fehlerstatus zu setzen, der mit <function>json_last_error</function>
+     abgerufen werden kann.
+     <constant>JSON_PARTIAL_OUTPUT_ON_ERROR</constant> hat Vorrang vor
+     <constant>JSON_THROW_ON_ERROR</constant>. Verfügbar seit PHP 7.3.0.
+    </simpara>
+   </listitem>
+  </varlistentry>
+ </variablelist>

 </appendix>


Modified: phpdoc/de/trunk/reference/json/functions/json-decode.xml
===================================================================
--- phpdoc/de/trunk/reference/json/functions/json-decode.xml	2018-10-02 17:25:33 UTC (rev 345768)
+++ phpdoc/de/trunk/reference/json/functions/json-decode.xml	2018-10-03 13:31:46 UTC (rev 345769)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 343899 Maintainer: simp Status: ready -->
+<!-- EN-Revision: 345756 Maintainer: simp Status: ready -->
 <!-- Credits: sammywg -->

 <refentry xml:id="function.json-decode" xmlns="http://docbook.org/ns/docbook">
@@ -60,15 +60,11 @@
      <term><parameter>options</parameter></term>
      <listitem>
       <para>
-       Bitmaske mit JSON-Dekodieroptionen.
-       Derzeit werden zwei Optionen unterstützt. Die erste ist
-       <constant>JSON_BIGINT_AS_STRING</constant>,
-       die es erlaubt, große Ganzzahlen als Zeichenketten anstatt Floats zu
-       kodieren (standardmäßig werden große Ganzzahlen
-       in Fließkommazahlen umgewandelt).
-       Die zweite Option ist <constant>JSON_OBJECT_AS_ARRAY</constant>, das den
-       selben Effekt hat, wie &true; an <parameter>assoc</parameter> zu
-       übergeben.
+       Bitmaske von <constant>JSON_BIGINT_AS_STRING</constant> (standardmäßig aktiviert),
+       <constant>JSON_OBJECT_AS_ARRAY</constant>,  <constant>JSON_THROW_ON_ERROR</constant>.
+       Das Verhalten dieser Konstanten ist auf der Seite über die
+       <link linkend="json.constants">JSON Konstanten</link>
+       beschrieben.
       </para>
      </listitem>
     </varlistentry>

Modified: phpdoc/de/trunk/reference/json/functions/json-encode.xml
===================================================================
--- phpdoc/de/trunk/reference/json/functions/json-encode.xml	2018-10-02 17:25:33 UTC (rev 345768)
+++ phpdoc/de/trunk/reference/json/functions/json-encode.xml	2018-10-03 13:31:46 UTC (rev 345769)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 342210 Maintainer: simp Status: ready -->
+<!-- EN-Revision: 345753 Maintainer: simp Status: ready -->
 <!-- Credits: sammywg -->

 <refentry xml:id="function.json-encode" xmlns="http://docbook.org/ns/docbook">
@@ -59,7 +59,8 @@
        <constant>JSON_FORCE_OBJECT</constant>,
        <constant>JSON_PRESERVE_ZERO_FRACTION</constant>,
        <constant>JSON_UNESCAPED_UNICODE</constant>,
-       <constant>JSON_PARTIAL_OUTPUT_ON_ERROR</constant>.
+       <constant>JSON_PARTIAL_OUTPUT_ON_ERROR</constant>,
+       <constant>JSON_THROW_ON_ERROR</constant>.
        Das Verhalten dieser Konstanten ist auf der Seite über die
        <link linkend="json.constants">JSON Konstanten</link>
        beschrieben.

Modified: phpdoc/de/trunk/reference/misc/functions/define.xml
===================================================================
--- phpdoc/de/trunk/reference/misc/functions/define.xml	2018-10-02 17:25:33 UTC (rev 345768)
+++ phpdoc/de/trunk/reference/misc/functions/define.xml	2018-10-03 13:31:46 UTC (rev 345769)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 343899 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 345716 Maintainer: sammywg Status: ready -->

 <refentry xml:id="function.define" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
@@ -94,6 +94,13 @@
      </thead>
      <tbody>
       <row>
+       <entry>7.3.0</entry>
+       <entry>
+        <parameter>case_insensitive</parameter> ist missbilligt, und wird in
+        Version 8.0.0 entfernt.
+       </entry>
+      </row>
+      <row>
        <entry>7.0.0</entry>
        <entry>
         <type>array</type> Werte sind erlaubt.

Modified: phpdoc/de/trunk/reference/password/functions/password-hash.xml
===================================================================
--- phpdoc/de/trunk/reference/password/functions/password-hash.xml	2018-10-02 17:25:33 UTC (rev 345768)
+++ phpdoc/de/trunk/reference/password/functions/password-hash.xml	2018-10-03 13:31:46 UTC (rev 345769)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 344891 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 345734 Maintainer: nobody Status: ready -->
 <!-- Reviewed: no -->

 <refentry xml:id="function.password-hash" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -232,7 +232,7 @@
  */
 $options = [
     'cost' => 11,
-    'salt' => mcrypt_create_iv(22, MCRYPT_DEV_URANDOM),
+    'salt' => random_bytes(22),
 ];
 echo password_hash("rasmuslerdorf", PASSWORD_BCRYPT, $options);
 ?>
@@ -378,6 +378,7 @@
     <member><function>password_verify</function></member>
     <member><function>crypt</function></member>
     <member><link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="&url.password.compat;">userland implementation</link></member>
+    <member><function>sodium_crypto_pwhash_str</function></member>
    </simplelist>
   </para>
  </refsect1>

Modified: phpdoc/de/trunk/reference/password/functions/password-verify.xml
===================================================================
--- phpdoc/de/trunk/reference/password/functions/password-verify.xml	2018-10-02 17:25:33 UTC (rev 345768)
+++ phpdoc/de/trunk/reference/password/functions/password-verify.xml	2018-10-03 13:31:46 UTC (rev 345769)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 343889 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 345733 Maintainer: nobody Status: ready -->
 <!-- Reviewed: yes -->

 <refentry xml:id="function.password-verify" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -91,6 +91,7 @@
    <simplelist>
     <member><function>password_hash</function></member>
     <member><link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="&url.password.compat;">Userland Implementation</link></member>
+    <member><function>sodium_crypto_pwhash_str_verify</function></member>
    </simplelist>
   </para>
  </refsect1>

Modified: phpdoc/de/trunk/reference/pcre/functions/preg-quote.xml
===================================================================
--- phpdoc/de/trunk/reference/pcre/functions/preg-quote.xml	2018-10-02 17:25:33 UTC (rev 345768)
+++ phpdoc/de/trunk/reference/pcre/functions/preg-quote.xml	2018-10-03 13:31:46 UTC (rev 345769)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 339916 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 345761 Maintainer: samesch Status: ready -->

 <refentry xml:id="function.preg-quote" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
@@ -85,6 +85,12 @@
      </thead>
      <tbody>
       <row>
+       <entry>7.3.0</entry>
+       <entry>
+        Das Zeichen <literal>#</literal> wird nun maskiert.
+       </entry>
+      </row>
+      <row>
        <entry>5.3.0</entry>
        <entry>
         Das Zeichen <literal>-</literal> wird nun maskiert.

Modified: phpdoc/de/trunk/reference/strings/functions/str-getcsv.xml
===================================================================
--- phpdoc/de/trunk/reference/strings/functions/str-getcsv.xml	2018-10-02 17:25:33 UTC (rev 345768)
+++ phpdoc/de/trunk/reference/strings/functions/str-getcsv.xml	2018-10-03 13:31:46 UTC (rev 345769)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 344694 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 345681 Maintainer: sammywg Status: ready -->

 <refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.str-getcsv">
  <refnamediv>

Modified: phpdoc/de/trunk/reference/url/functions/base64-encode.xml
===================================================================
--- phpdoc/de/trunk/reference/url/functions/base64-encode.xml	2018-10-02 17:25:33 UTC (rev 345768)
+++ phpdoc/de/trunk/reference/url/functions/base64-encode.xml	2018-10-03 13:31:46 UTC (rev 345769)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 317921 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 345680 Maintainer: sammywg Status: ready -->
 <refentry xml:id="function.base64-encode" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
   <refname>base64_encode</refname>
@@ -46,7 +46,7 @@
  <refsect1 role="returnvalues">
   &reftitle.returnvalues;
   <para>
-   Die kodierten Daten in Stringform. &return.falseforfailure;
+   Die kodierten Daten in Stringform.
   </para>
  </refsect1>
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.