svn: /phpdoc/de/trunk/ appendices/migration56/new-features.xml faq/using.xml language/oop5/magic.xml reference/filesystem/functions/tmpfile.xml reference/pcre/configure.xml reference/strings/functions/chr.xml reference/strings/functions/ord.xml

[email protected] (Christoph Michael Becker)
Newsgroups php.doc.de
Message-ID <[email protected]>
cmb                                      Fri, 04 Jan 2019 21:09:06 +0000

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

Log:
Sync with EN

Changed paths:
    U   phpdoc/de/trunk/appendices/migration56/new-features.xml
    U   phpdoc/de/trunk/faq/using.xml
    U   phpdoc/de/trunk/language/oop5/magic.xml
    U   phpdoc/de/trunk/reference/filesystem/functions/tmpfile.xml
    U   phpdoc/de/trunk/reference/pcre/configure.xml
    U   phpdoc/de/trunk/reference/strings/functions/chr.xml
    U   phpdoc/de/trunk/reference/strings/functions/ord.xml

Modified: phpdoc/de/trunk/appendices/migration56/new-features.xml
===================================================================
--- phpdoc/de/trunk/appendices/migration56/new-features.xml	2019-01-04 20:24:37 UTC (rev 346548)
+++ phpdoc/de/trunk/appendices/migration56/new-features.xml	2019-01-04 21:09:06 UTC (rev 346549)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 340228 Maintainer: simp Status: ready -->
+<!-- EN-Revision: 346451 Maintainer: simp Status: ready -->

 <sect1 xml:id="migration56.new-features" xmlns:xlink="http://www.w3.org/1999/xlink">
  <title>Neue Features</title>
@@ -224,7 +224,7 @@
   <para>
    PHP enthält nun einen interaktiven Debugger namens phpdbg, welcher als
    SAPI-Modul umgesetzt wurde. Weitere Informationen findet man in der
-   <link xlink:href="&url.phpdbg.docs;">phpdbg-Dokumentation</link>.
+   <link linkend="book.phpdbg">phpdbg-Dokumentation</link>.
   </para>
  </sect2>


Modified: phpdoc/de/trunk/faq/using.xml
===================================================================
--- phpdoc/de/trunk/faq/using.xml	2019-01-04 20:24:37 UTC (rev 346548)
+++ phpdoc/de/trunk/faq/using.xml	2019-01-04 21:09:06 UTC (rev 346549)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 338336 Maintainer: wiesemann Status: ready -->
+<!-- EN-Revision: 346458 Maintainer: wiesemann Status: ready -->
 <chapter xml:id="faq.using" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
   <title>PHP benutzen</title>
   <titleabbrev>PHP benutzen</titleabbrev>
@@ -489,6 +489,9 @@
       Diese abgekürzten Schreibweise kann in der &php.ini;
       und in der
       <function>ini_get</function>-Funktion verwendet werden.
+      Es ist zu beachten, dass der numerische Wert nach <type>Integer</type>
+      umgewandelt wird; beispielsweise wird <literal>0.5M</literal> als
+      <literal>0</literal> interpretiert.
      </para>
      <note>
       <title>Kilobyte versus Kibibyte</title>

Modified: phpdoc/de/trunk/language/oop5/magic.xml
===================================================================
--- phpdoc/de/trunk/language/oop5/magic.xml	2019-01-04 20:24:37 UTC (rev 346548)
+++ phpdoc/de/trunk/language/oop5/magic.xml	2019-01-04 21:09:06 UTC (rev 346549)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 339526 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 346507 Maintainer: hholzgra Status: ready -->
 <!-- Credits: simp -->
 <sect1 xml:id="language.oop5.magic" xmlns="http://docbook.org/ns/docbook">
  <title>Magische Methoden</title>
@@ -26,6 +26,13 @@
   die sie mit sich bringen, haben will.
  </para>

+  <note>
+   <simpara>
+    Alle magischen Methoden <emphasis>müssen</emphasis> als
+    <literal>public</literal> deklariert werden.
+   </simpara>
+  </note>
+
  <caution>
   <simpara>
    PHP reserviert alle Funktionsnamen, die mit __ beginnen, als magisch.

Modified: phpdoc/de/trunk/reference/filesystem/functions/tmpfile.xml
===================================================================
--- phpdoc/de/trunk/reference/filesystem/functions/tmpfile.xml	2019-01-04 20:24:37 UTC (rev 346548)
+++ phpdoc/de/trunk/reference/filesystem/functions/tmpfile.xml	2019-01-04 21:09:06 UTC (rev 346549)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 332039 Maintainer: wiesemann Status: ready -->
+<!-- EN-Revision: 346471 Maintainer: wiesemann Status: ready -->
 <refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.tmpfile">
  <refnamediv>
   <refname>tmpfile</refname>
@@ -23,11 +23,12 @@
    verbleibenden Referenzen zum von <function>tmpfile</function> zurück
    gegebenen Datei-Handle mehr gibt), oder wenn das Skript beendet wird.
   </para>
-  <para>
-   Für Details lesen Sie bitte die Dokumentation zur
-   <literal>tmpfile(3)</literal>-Funktion und die
-   <filename>stdio.h</filename>-Header-Datei.
-  </para>
+  <caution>
+   <simpara>
+    Wird das Skript unerwartet beendet, wird die temporäre Datei möglicherweise
+    nicht gelöscht.
+   </simpara>
+  </caution>
  </refsect1>

  <refsect1 role="returnvalues">

Modified: phpdoc/de/trunk/reference/pcre/configure.xml
===================================================================
--- phpdoc/de/trunk/reference/pcre/configure.xml	2019-01-04 20:24:37 UTC (rev 346548)
+++ phpdoc/de/trunk/reference/pcre/configure.xml	2019-01-04 21:09:06 UTC (rev 346549)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 340986 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 346442 Maintainer: samesch Status: ready -->

 <section xml:id="pcre.installation" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  &reftitle.install;
@@ -49,6 +49,16 @@
     </thead>
     <tbody>
      <row>
+      <entry>7.3.0</entry>
+      <entry>10.32</entry>
+      <entry></entry>
+     </row>
+     <row>
+      <entry>7.2.0</entry>
+      <entry>8.41</entry>
+      <entry></entry>
+     </row>
+     <row>
       <entry>7.0.3 / 5.6.18 / 5.5.32</entry>
       <entry>8.38</entry>
       <entry>Siehe CVE-2015-8383, CVE-2015-8386, CVE-2015-8387, CVE-2015-8389, CVE-2015-8390, CVE-2015-8391, CVE-2015-8393, CVE-2015-8394</entry>
@@ -153,11 +163,6 @@
       <entry>4.5</entry>
       <entry></entry>
      </row>
-     <row>
-      <entry>4.4.7</entry>
-      <entry>7.7</entry>
-      <entry></entry>
-     </row>
     </tbody>
    </tgroup>
   </table>

Modified: phpdoc/de/trunk/reference/strings/functions/chr.xml
===================================================================
--- phpdoc/de/trunk/reference/strings/functions/chr.xml	2019-01-04 20:24:37 UTC (rev 346548)
+++ phpdoc/de/trunk/reference/strings/functions/chr.xml	2019-01-04 21:09:06 UTC (rev 346549)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 345229 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 346452 Maintainer: sammywg Status: ready -->

 <refentry xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://docbook.org/ns/docbook" xml:id="function.chr">
  <refnamediv>
@@ -130,6 +130,7 @@
     <member><function>sprintf</function> mit der Formatierungsanweisung <literal>%c</literal></member>
     <member><function>ord</function></member>
     <member>Eine <link xlink:href="&url.asciitable;">ASCII-Tabelle</link></member>
+    <member><function>mb_chr</function></member>
    </simplelist>
   </para>
  </refsect1>

Modified: phpdoc/de/trunk/reference/strings/functions/ord.xml
===================================================================
--- phpdoc/de/trunk/reference/strings/functions/ord.xml	2019-01-04 20:24:37 UTC (rev 346548)
+++ phpdoc/de/trunk/reference/strings/functions/ord.xml	2019-01-04 21:09:06 UTC (rev 346549)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 345229 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 346452 Maintainer: sammywg Status: ready -->
 <refentry xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://docbook.org/ns/docbook" xml:id="function.ord">
  <refnamediv>
   <refname>ord</refname>
@@ -102,6 +102,7 @@
    <simplelist>
     <member><function>chr</function></member>
     <member>Eine <link xlink:href="&url.asciitable;">ASCII-Tabelle</link></member>
+    <member><function>mb_ord</function></member>
    </simplelist>
   </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.