svn: /phpdoc/de/trunk/ appendices/migration70/changed-functions.xml language/oop5/constants.xml language/oop5/decon.xml language/predefined/variables/get.xml language/predefined/variables/server.xml reference/shmop/functions/shmop-read.xml reference/strings/functions/substr-count.xml

[email protected] (Christoph Michael Becker)
Newsgroups php.doc.de
Message-ID <[email protected]>
cmb                                      Tue, 18 Sep 2018 11:03:13 +0000

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

Log:
Sync with EN

Changed paths:
    U   phpdoc/de/trunk/appendices/migration70/changed-functions.xml
    U   phpdoc/de/trunk/language/oop5/constants.xml
    U   phpdoc/de/trunk/language/oop5/decon.xml
    U   phpdoc/de/trunk/language/predefined/variables/get.xml
    U   phpdoc/de/trunk/language/predefined/variables/server.xml
    U   phpdoc/de/trunk/reference/shmop/functions/shmop-read.xml
    U   phpdoc/de/trunk/reference/strings/functions/substr-count.xml

Modified: phpdoc/de/trunk/appendices/migration70/changed-functions.xml
===================================================================
--- phpdoc/de/trunk/appendices/migration70/changed-functions.xml	2018-09-18 09:35:51 UTC (rev 345648)
+++ phpdoc/de/trunk/appendices/migration70/changed-functions.xml	2018-09-18 11:03:13 UTC (rev 345649)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 341328 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 345634 Maintainer: nobody Status: ready -->

 <sect1 xml:id="migration70.changed-functions">
  <title>Geänderte Funktionen</title>
@@ -74,9 +74,10 @@
    </listitem>
    <listitem>
     <simpara>
-     <function>xml_set_object</function> benötigt nun bei Beendigung ein manuelles
-     Löschen von
-     <parameter>$parser</parameter> um Speicherlecks zu vermeiden.
+     <function>xml_parser_free</function> ist nicht länger ausreichend, um die
+     Parser-Ressource freizugeben, wenn sie ein Objekt referenziert und dieses
+     Objekt jene Parser-Ressource referenziert. In diesem Fall ist es notwendig
+     zusätzlich den Parser zu löschen (z.B. per <function>unset</function>).
     </simpara>
    </listitem>
   </itemizedlist>

Modified: phpdoc/de/trunk/language/oop5/constants.xml
===================================================================
--- phpdoc/de/trunk/language/oop5/constants.xml	2018-09-18 09:35:51 UTC (rev 345648)
+++ phpdoc/de/trunk/language/oop5/constants.xml	2018-09-18 11:03:13 UTC (rev 345649)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 341632 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 345616 Maintainer: hholzgra Status: ready -->
 <!-- Credits: simp -->
  <sect1 xml:id="language.oop5.constants" xmlns="http://docbook.org/ns/docbook">
   <title>Klassenkonstanten</title>

Modified: phpdoc/de/trunk/language/oop5/decon.xml
===================================================================
--- phpdoc/de/trunk/language/oop5/decon.xml	2018-09-18 09:35:51 UTC (rev 345648)
+++ phpdoc/de/trunk/language/oop5/decon.xml	2018-09-18 11:03:13 UTC (rev 345649)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 344091 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 345581 Maintainer: hholzgra Status: ready -->
 <!-- Credits: simp -->
  <sect1 xml:id="language.oop5.decon" xmlns="http://docbook.org/ns/docbook">
   <title>Konstruktoren und Destruktoren</title>
@@ -126,14 +126,15 @@
     <programlisting role="php">
 <![CDATA[
 <?php
-class MyDestructableClass {
+
+class MyDestructableClass
+{
     function __construct() {
         print "Im Konstruktor\n";
-        $this->name = "MyDestructableClass";
     }

     function __destruct() {
-        print "Zerstoere " . $this->name . "\n";
+        print "Zerstoere " . __CLASS__ . "\n";
     }
 }


Modified: phpdoc/de/trunk/language/predefined/variables/get.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/variables/get.xml	2018-09-18 09:35:51 UTC (rev 345648)
+++ phpdoc/de/trunk/language/predefined/variables/get.xml	2018-09-18 11:03:13 UTC (rev 345649)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 312956 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 345582 Maintainer: sammywg Status: ready -->

 <phpdoc:varentry xmlns:phpdoc="http://php.net/ns/phpdoc" xml:id="reserved.variables.get" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
@@ -13,7 +13,9 @@
   &reftitle.description;
   <para>
    Ein assoziatives <type>Array</type> von Variablen, die dem aktuellen Skript
-   mittels der URL-Parameter übergeben werden.
+   mittels der URL-Parameter (dem Query-String) übergeben werden.
+   Es ist zu beachten, dass das Array nicht nur für GET-Anfragen gefüllt wird,
+   sondern für alle Anfragen mit einem Query-String.
   </para>
   <simpara>
    <varname>$HTTP_GET_VARS</varname> enthält anfangs dieselben Informationen,

Modified: phpdoc/de/trunk/language/predefined/variables/server.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/variables/server.xml	2018-09-18 09:35:51 UTC (rev 345648)
+++ phpdoc/de/trunk/language/predefined/variables/server.xml	2018-09-18 11:03:13 UTC (rev 345649)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 339426 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 345614 Maintainer: sammywg Status: ready -->

 <phpdoc:varentry xmlns:phpdoc="http://php.net/ns/phpdoc" xml:id="reserved.variables.server" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>

Modified: phpdoc/de/trunk/reference/shmop/functions/shmop-read.xml
===================================================================
--- phpdoc/de/trunk/reference/shmop/functions/shmop-read.xml	2018-09-18 09:35:51 UTC (rev 345648)
+++ phpdoc/de/trunk/reference/shmop/functions/shmop-read.xml	2018-09-18 11:03:13 UTC (rev 345649)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 340948 Maintainer: conni Status: ready -->
+<!-- EN-Revision: 345648 Maintainer: conni Status: ready -->

 <refentry xml:id="function.shmop-read" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
@@ -46,7 +46,8 @@
      <term><parameter>count</parameter></term>
      <listitem>
       <para>
-       Die Anzahl der zu lesenden Bytes
+       Die Anzahl der zu lesenden Bytes.
+       <literal>0</literal> liest <code>shmop_size($shmid) - $start</code> Bytes.
       </para>
      </listitem>
     </varlistentry>

Modified: phpdoc/de/trunk/reference/strings/functions/substr-count.xml
===================================================================
--- phpdoc/de/trunk/reference/strings/functions/substr-count.xml	2018-09-18 09:35:51 UTC (rev 345648)
+++ phpdoc/de/trunk/reference/strings/functions/substr-count.xml	2018-09-18 11:03:13 UTC (rev 345649)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 340032 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 345591 Maintainer: sammywg Status: ready -->

 <refentry xml:id="function.substr-count" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
@@ -101,6 +101,7 @@
        <entry>
         Unterstützung für negative <parameter>offset</parameter> und
         <parameter>length</parameter> Argumente wurde hinzugefügt.
+        <parameter>length</parameter> kann nun auch <literal>0</literal> sein.
        </entry>
       </row>
       <row>
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.