svn: /phpdoc/de/trunk/ language-snippets.ent reference/array/functions/array-rand.xml reference/array/functions/shuffle.xml reference/curl/functions/curl-exec.xml reference/dbase/book.xml reference/dbase/configure.xml reference/dbase/constants.xml reference/dbase/functions/dbase-add-record.xml reference/dbase/functions/dbase-close.xml reference/dbase/functions/dbase-create.xml reference/dbase/functions/dbase-delete-record.xml reference/dbase/functions/dbase-get-header-info.xml reference/dbase/fu

[email protected] (Christoph Michael Becker)
Newsgroups php.doc.de
Message-ID <[email protected]>
cmb                                      Thu, 19 Apr 2018 23:01:33 +0000

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

Log:
Sync with EN

Changed paths:
    U   phpdoc/de/trunk/language-snippets.ent
    U   phpdoc/de/trunk/reference/array/functions/array-rand.xml
    U   phpdoc/de/trunk/reference/array/functions/shuffle.xml
    U   phpdoc/de/trunk/reference/curl/functions/curl-exec.xml
    U   phpdoc/de/trunk/reference/dbase/book.xml
    U   phpdoc/de/trunk/reference/dbase/configure.xml
    U   phpdoc/de/trunk/reference/dbase/constants.xml
    U   phpdoc/de/trunk/reference/dbase/functions/dbase-add-record.xml
    U   phpdoc/de/trunk/reference/dbase/functions/dbase-close.xml
    U   phpdoc/de/trunk/reference/dbase/functions/dbase-create.xml
    U   phpdoc/de/trunk/reference/dbase/functions/dbase-delete-record.xml
    U   phpdoc/de/trunk/reference/dbase/functions/dbase-get-header-info.xml
    U   phpdoc/de/trunk/reference/dbase/functions/dbase-get-record-with-names.xml
    U   phpdoc/de/trunk/reference/dbase/functions/dbase-get-record.xml
    U   phpdoc/de/trunk/reference/dbase/functions/dbase-numfields.xml
    U   phpdoc/de/trunk/reference/dbase/functions/dbase-numrecords.xml
    U   phpdoc/de/trunk/reference/dbase/functions/dbase-open.xml
    U   phpdoc/de/trunk/reference/dbase/functions/dbase-pack.xml
    U   phpdoc/de/trunk/reference/dbase/functions/dbase-replace-record.xml
    U   phpdoc/de/trunk/reference/dbase/setup.xml
    U   phpdoc/de/trunk/reference/filesystem/functions/realpath.xml
svn-diffs-344756.txt (text/x-diff, 41.9 KB)
Modified: phpdoc/de/trunk/language-snippets.ent
===================================================================
--- phpdoc/de/trunk/language-snippets.ent	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/language-snippets.ent	2018-04-19 23:01:33 UTC (rev 344756)
@@ -565,6 +565,37 @@
 </term><listitem><para>Ein von <function>curl_multi_init</function> zurückgegebenes
 cURL-Multihandle.</para></listitem></varlistentry>'>

+<!-- dbase notes -->
+
+<!ENTITY dbase.type-conversion '<para xmlns="http://docbook.org/ns/docbook">
+   Jedes Feld wird in den entsprechenden PHP-Typ umgewandelt, ausgenommen:
+   <itemizedlist>
+    <listitem>
+     <simpara>
+      Datumsfelder werden als Zeichenkette zurückgegeben.
+     </simpara>
+    </listitem>
+    <listitem>
+     <simpara>
+      Zeitstempelwerte werden in Zeichenketten umgewandelt.
+     </simpara>
+    </listitem>
+    <listitem>
+     <simpara>
+      Ganzzahlen außerhalb des Bereiches
+      <constant>PHP_INT_MIN</constant>..<constant>PHP_INT_MAX</constant> werden
+      als Zeichenkette zurückgegeben.
+     </simpara>
+    </listitem>
+    <listitem>
+     <simpara>
+      Boolesche Werte (<literal>L</literal>) werden zu <literal>1</literal> oder
+      <literal>0</literal> umgewandelt.
+     </simpara>
+    </listitem>
+   </itemizedlist>
+  </para>'>
+
 <!-- IMAP notes -->

 <!ENTITY imap.imap-stream.description '<varlistentry xmlns="http://docbook.org/ns/docbook"><term><parameter>

Modified: phpdoc/de/trunk/reference/array/functions/array-rand.xml
===================================================================
--- phpdoc/de/trunk/reference/array/functions/array-rand.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/array/functions/array-rand.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,7 +1,8 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 341936 Maintainer: gerdtsteltner Status: ready -->
+<!-- EN-Revision: 344693 Maintainer: gerdtsteltner Status: ready -->
 <!-- CREDITS: tom -->
+
 <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>
@@ -69,7 +70,7 @@
       <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>
+        Zur Erzeugung der Zufallszahlen <link linkend="migration71.incompatible.rand-srand-aliases">kommt intern nun</link> der <link xlink:href="&url.mersenne;">Mersenne-Primzahlen</link>-Zufallsgenerator statt der vorherigen libc-rand-Funktion zum Einsatz.
        </entry>
       </row>
       <row>

Modified: phpdoc/de/trunk/reference/array/functions/shuffle.xml
===================================================================
--- phpdoc/de/trunk/reference/array/functions/shuffle.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/array/functions/shuffle.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,7 +1,8 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 341933 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 344693 Maintainer: hholzgra Status: ready -->
 <!-- CREDITS: tom, simp -->
+
 <refentry xml:id="function.shuffle" xmlns="http://docbook.org/ns/docbook"  xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
   <refname>shuffle</refname>
@@ -58,7 +59,7 @@
       <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>
+        Zur Erzeugung der Zufallszahlen <link linkend="migration71.incompatible.rand-srand-aliases">kommt intern nun</link> der <link xlink:href="&url.mersenne;">Mersenne-Primzahlen</link>-Zufallsgenerator statt der vorherigen libc-rand-Funktion zum Einsatz.
        </entry>
       </row>
      </tbody>

Modified: phpdoc/de/trunk/reference/curl/functions/curl-exec.xml
===================================================================
--- phpdoc/de/trunk/reference/curl/functions/curl-exec.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/curl/functions/curl-exec.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 338332 Maintainer: jaenecke Status: ready -->
+<!-- EN-Revision: 344669 Maintainer: jaenecke Status: ready -->
+
 <refentry xml:id="function.curl-exec" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>curl_exec</refname>
@@ -37,9 +38,17 @@
    &return.success; Ist jedoch die Option <constant>CURLOPT_RETURNTRANSFER</constant>
    <link linkend="function.curl-setopt">gesetzt</link> so
    wird das Ergebnis des cURL-Transfers zurückgegeben, im Falle eines
-   Fehlers &false;.
+   Fehlschlags &false;.
   </para>
   &return.falseproblem;
+  <note>
+   <para>
+    Es ist zu beachten, dass Antwort-Statuscodes, die Fehler anzeigen (wie etwa
+    <literal>404 Not found</literal>), nicht als Fehlschlag angesehen werden.
+    <function>curl_getinfo</function> kann verwendet werden, um auf solche zu
+    prüfen.
+   </para>
+  </note>
  </refsect1>

  <refsect1 role="examples">

Modified: phpdoc/de/trunk/reference/dbase/book.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/book.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/book.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 340800 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340884 Maintainer: samesch Status: ready -->

 <book xml:id="book.dbase" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <?phpdoc extension-membership="bundledexternal" ?>
@@ -9,10 +9,36 @@
  <!-- {{{ preface -->
  <preface xml:id="intro.dbase">
   &reftitle.intro;
+  <note>
+   <para>
+    &pecl.moved-ver;5.3.0.
+   </para>
+  </note>
   <para>
    Diese Funktionen erlauben Ihnen den Zugriff auf Datensätze, die in
    Datenbanken im dBase-Format (dbf) vorliegen.
   </para>
+  <warning>
+   <para>
+    Wir empfehlen, keine dBase-Dateien als Produktions-Datenbank zu benutzen.
+    Wählen Sie dafür stattdessen einen echten SQL-Server; <link
+    xlink:href="&url.mysql;">MySQL</link> oder <link
+    xlink:href="&url.pgsql;">Postgres</link> sind bei PHP eine gute Wahl. Die
+    dBase-Unterstützung durch PHP dient hauptsächlich dem Im- und Export von
+    Daten zu oder aus ihrer Web-Datenbank, weil das DBF-Datei-Format allgemein
+    von Windows-Tabellenkalulationen und -Zeitplanern verstanden wird.
+   </para>
+  </warning>
+  <caution>
+   <para>
+    Von dbase 7.0.0 an werden Datenbanken automatisch per
+    <function>flock</function> gesperrt. Zuvor wurden Sperren nicht unterstützt,
+    so dass zwei Webserver-Prozesse, die gleichzeitig dieselbe dBase-Datei
+    änderten, mit hoher Wahrscheinlichkeit die Datenbank ruinierten. Dies kann
+    auf Systemen, die die Sperren auf Prozessebene implementieren unter multithreaded
+    SAPIS, wie etwa ISAPI, auch noch mit dbase 7.0.0+ passieren.
+   </para>
+  </caution>
   <para>
    dBase-Dateien sind einfache sequentielle Dateien mit fester Datensatzlänge.
    Neue Datensätze werden am Dateiende angehängt und gelöschte Datensätze
@@ -52,7 +78,7 @@
        <entry><literal>T</literal></entry>
        <entry>DateTime</entry>
        <entry><literal>YYYYMMDDhhmmss.uuu</literal></entry>
-       <entry>Es wird keine Gültigkeitsprüfung vorgenommen. Verfügbar seit dbase 7.0.0.</entry>
+       <entry>(FoxPro) Es wird keine Gültigkeitsprüfung vorgenommen. Verfügbar seit dbase 7.0.0.</entry>
       </row>
       <row>
        <entry><literal>N</literal></entry>
@@ -60,10 +86,19 @@
        <entry>Eine Zahl</entry>
        <entry>
         Sie müssen die Länge und die Genauigkeit (die Anzahl der
-        Nachkommastellen) angeben
+        Nachkommastellen) angeben.
        </entry>
       </row>
       <row>
+       <entry><literal>F</literal></entry>
+       <entry>Float</entry>
+       <entry>Eine Gleitkommazahl</entry>
+       <entry>
+        Dasselbe wie <literal>N</literal>.
+        Die Unterstützung für diesen Feldtyp wurde in PHP 5.2.0 hinzugefügt
+       </entry>
+      </row>
+      <row>
        <entry><literal>C</literal></entry>
        <entry>String</entry>
        <entry>Eine Zeichenkette</entry>
@@ -79,21 +114,15 @@
        <entry>Boolean</entry>
        <entry>
         <literal>T</literal> oder <literal>Y</literal> für &true;,
-        <literal>F</literal> oder <literal>N</literal> für &false;
+        <literal>F</literal> oder <literal>N</literal> für &false;,
+        <literal>?</literal> für nicht initialisiert.
        </entry>
        <entry>
-        Wird seit dbase 7.0.0 als <type>bool</type> (&true; oder &false;) zurückgeliefert.
+        Wird seit dbase 7.0.0 als <type>bool</type> (&true; oder &false;),
+        oder &null; für nicht initialisierte Felder zurückgeliefert.
         Wurde vorher als <type>int</type> (<literal>1</literal> oder <literal>0</literal>> zurückgeliefert.
        </entry>
       </row>
-      <row>
-       <entry><literal>F</literal></entry>
-       <entry>Float</entry>
-       <entry>Eine Gleitkommazahl</entry>
-       <entry>
-        Die Unterstützung für diesen Feldtyp wurde in PHP 5.2.0 hinzugefügt
-       </entry>
-      </row>
      </tbody>
     </tgroup>
    </table>
@@ -100,26 +129,17 @@
   </para>
   <note>
    <para>
-    &pecl.moved-ver;5.3.0.
+    Von dbase 7.0.0 an werden nullable Felder für
+    <constant>DBASE_TYPE_FOXPRO</constant> Datenbanken unterstützt. Ist ein Feld
+    nullable, wird die Übergabe von &null; das entsprechende Flag setzen, und
+    beim späteren Abruf wird der Feldwert &null; sein.
    </para>
   </note>
-  <warning>
+  <note>
    <para>
-    Es gibt keine Unterstützug für Indizes oder Memo-Felder. Auch
-    Sperrfunktionen sind nicht vorhanden. Zwei gleichzeitig ablaufende
-    Webserver-Prozesse, die die selbe dBase-Datei bearbeiten, werden Ihre
-    Datenbank sehr wahrscheinlich zerstören.
-   </para>
-   <para>
-    Wir empfehlen, keine dBase-Dateien als Produktions-Datenbank zu benutzen.
-    Wählen Sie dafür stattdessen einen echten SQL-Server; <link
-    xlink:href="&url.mysql;">MySQL</link> oder <link
-    xlink:href="&url.pgsql;">Postgres</link> sind bei PHP eine gute Wahl. Die
-    dBase-Unterstützung durch PHP dient hauptsächlich dem Im- und Export von
-    Daten zu oder aus ihrer Web-Datenbank, weil das DBF-Datei-Format allgemein
-    von Windows-Tabellenkalulationen und -Zeitplanern verstanden wird.
-   </para>
-  </warning>
+    Indizes und Memo-Felder werden nicht unterstützt.
+  </para>
+  </note>
  </preface>
  <!-- }}} -->


Modified: phpdoc/de/trunk/reference/dbase/configure.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/configure.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/configure.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,13 +1,12 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 339641 Maintainer: samesch Status: ready -->

-<section xml:id="dbase.installation" xmlns="http://docbook.org/ns/docbook">
+<section xml:id="dbase.installation" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  &reftitle.install;
  <para>
-  Um die mitgelieferte dBase-Bibliothek zu aktivieren und diese Funktionen zu
-  benutzen, müssen Sie PHP mit der Option
-  <option role="configure">--enable-dbase</option> übersetzen.
+  &pecl.info;
+  <link xlink:href="&url.pecl.package;dbase">&url.pecl.package;dbase</link>.
  </para>
 </section>


Modified: phpdoc/de/trunk/reference/dbase/constants.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/constants.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/constants.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,10 +1,72 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 288721 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340859 Maintainer: samesch Status: ready -->

 <appendix xml:id="dbase.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  &reftitle.constants;
- &no.constants;
+ &extension.constants;
+ <variablelist>
+  <varlistentry xml:id="constant.dbase-version">
+   <term>
+    <constant>DBASE_VERSION</constant>
+    (<type>string</type>)
+   </term>
+   <listitem>
+    <simpara>
+     Die Version der Extension.
+     (Verfügbar von dbase 7.0.0 an)
+    </simpara>
+   </listitem>
+  </varlistentry>
+  <varlistentry xml:id="constant.dbase-rdonly">
+   <term>
+    <constant>DBASE_RDONLY</constant>
+    (<type>int</type>)
+   </term>
+   <listitem>
+    <simpara>
+     Öffne die Datenbank nur zum Lesen. Verwendet mit <function>dbase_open</function>.
+     (Verfügbar von dbase 7.0.0 an)
+    </simpara>
+   </listitem>
+  </varlistentry>
+  <varlistentry xml:id="constant.dbase-rdwr">
+   <term>
+    <constant>DBASE_RDWR</constant>
+    (<type>int</type>)
+   </term>
+   <listitem>
+    <simpara>
+     Öffne die Datenbank zum Lesen und Schreiben. Verwendet mit <function>dbase_open</function>.
+     (Verfügbar von dbase 7.0.0 an)
+    </simpara>
+   </listitem>
+  </varlistentry>
+  <varlistentry xml:id="constant.dbase-type-dbase">
+   <term>
+    <constant>DBASE_TYPE_DBASE</constant>
+    (<type>int</type>)
+   </term>
+   <listitem>
+    <simpara>
+     Erzeuge eine Datenbank im dBASE-Stil. Verwendet mit <function>dbase_create</function>.
+     (Verfügbar von dbase 7.0.0 an)
+    </simpara>
+   </listitem>
+  </varlistentry>
+  <varlistentry xml:id="constant.dbase-type-foxpro">
+   <term>
+    <constant>DBASE_TYPE_FOXPRO</constant>
+    (<type>int</type>)
+   </term>
+   <listitem>
+    <simpara>
+     Erzeuge eine Datenbank im FoxPro-Stil. Verwendet mit <function>dbase_create</function>.
+     (Verfügbar von dbase 7.0.0 an)
+    </simpara>
+   </listitem>
+  </varlistentry>
+ </variablelist>
 </appendix>

 <!-- Keep this comment at the end of the file

Modified: phpdoc/de/trunk/reference/dbase/functions/dbase-add-record.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/functions/dbase-add-record.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/functions/dbase-add-record.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340755 Maintainer: samesch Status: ready -->
+
 <refentry xml:id="function.dbase-add-record" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>dbase_add_record</refname>
@@ -11,7 +12,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>bool</type><methodname>dbase_add_record</methodname>
-   <methodparam><type>int</type><parameter>dbase_identifier</parameter></methodparam>
+   <methodparam><type>resource</type><parameter>dbase_identifier</parameter></methodparam>
    <methodparam><type>array</type><parameter>record</parameter></methodparam>
   </methodsynopsis>
   <para>
@@ -61,6 +62,29 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>dbase 7.0.0</entry>
+      <entry>
+       <parameter>dbase_identifier</parameter> ist nun eine <type>resource</type>
+       statt eines <type>int</type>.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/de/trunk/reference/dbase/functions/dbase-close.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/functions/dbase-close.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/functions/dbase-close.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340755 Maintainer: samesch Status: ready -->
+
 <refentry xml:id="function.dbase-close" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>dbase_close</refname>
@@ -11,7 +12,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>bool</type><methodname>dbase_close</methodname>
-   <methodparam><type>int</type><parameter>dbase_identifier</parameter></methodparam>
+   <methodparam><type>resource</type><parameter>dbase_identifier</parameter></methodparam>
   </methodsynopsis>
   <para>
    Schließt die angegebene Datenbank-Verbindungskennung.
@@ -43,6 +44,29 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>dbase 7.0.0</entry>
+      <entry>
+       <parameter>dbase_identifier</parameter> ist nun eine <type>resource</type>
+       statt eines <type>int</type>.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/de/trunk/reference/dbase/functions/dbase-create.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/functions/dbase-create.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/functions/dbase-create.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 344315 Maintainer: samesch Status: ready -->
+
 <refentry xml:id="function.dbase-create" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>dbase_create</refname>
@@ -10,12 +11,16 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <type>int</type><methodname>dbase_create</methodname>
+   <type>resource</type><methodname>dbase_create</methodname>
    <methodparam><type>string</type><parameter>filename</parameter></methodparam>
    <methodparam><type>array</type><parameter>fields</parameter></methodparam>
+   <methodparam choice="opt"><type>int</type><parameter>type</parameter><initializer>DBASE_TYPE_DBASE</initializer></methodparam>
   </methodsynopsis>
   <para>
    Erzeugt eine der angegebenen Definition entsprechende dBase-Datenbank.
+   Existiert die Datei bereits, wird sie nicht gekürzt.
+   <function>dbase_pack</function> kann aufgerufen werden, um die Kürzung zu
+   erzwingen.
   </para>
   &note.sm.uidcheck;
   &note.open-basedir.func;
@@ -40,16 +45,30 @@
       <para>
        Ein Array aus Arrays, von denen jedes das Format eines Datenbankfeldes
        beschreibt. Jedes Feld besteht aus einem Namen, einem Zeichen für den
-       Feldtyp und gegebenenfalls einer Länge und einer Genauigkeit.
+       Feldtyp und gegebenenfalls einer Länge, einer Genauigkeit und einem
+       nullable-Flag.
+       Die unterstützten Feldtypen sind im <link
+       linkend="intro.dbase">Einführungsabschnitt</link> aufgeführt.
       </para>
+     </listitem>
+    </varlistentry>
+    <varlistentry>
+     <term><parameter>type</parameter></term>
+     <listitem>
+      <para>
+       Der zu erzeugende Datenbanktype. Entweder
+       <constant>DBASE_TYPE_DBASE</constant> oder
+       <constant>DBASE_TYPE_FOXPRO</constant>.
+      </para>
       <note>
        <para>
-        Feldnamen dürfen nicht mehr als zehn Zeichen haben.
+        Die Feldnamen sind längenbeschränkt, und dürfen 10 Zeichen nicht
+        überschreiten.
        </para>
       </note>
      </listitem>
     </varlistentry>
-   </variablelist>
+    </variablelist>
   </para>
  </refsect1>

@@ -61,6 +80,35 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>dbase 7.0.0</entry>
+      <entry>
+       Der Parameter <parameter>type</parameter> wurde hinzugefügt.
+      </entry>
+     </row>
+     <row>
+      <entry>dbase 7.0.0</entry>
+      <entry>
+       Der Rückgabewert ist nun eine <type>resource</type> anstatt eines
+       <type>int</type>.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/de/trunk/reference/dbase/functions/dbase-delete-record.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/functions/dbase-delete-record.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/functions/dbase-delete-record.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340755 Maintainer: samesch Status: ready -->
+
 <refentry xml:id="function.dbase-delete-record" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>dbase_delete_record</refname>
@@ -11,7 +12,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>bool</type><methodname>dbase_delete_record</methodname>
-   <methodparam><type>int</type><parameter>dbase_identifier</parameter></methodparam>
+   <methodparam><type>resource</type><parameter>dbase_identifier</parameter></methodparam>
    <methodparam><type>int</type><parameter>record_number</parameter></methodparam>
   </methodsynopsis>
   <para>
@@ -59,6 +60,29 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>dbase 7.0.0</entry>
+      <entry>
+       <parameter>dbase_identifier</parameter> ist nun eine <type>resource</type>
+       statt eines <type>int</type>.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="seealso">
   &reftitle.seealso;
   <para>

Modified: phpdoc/de/trunk/reference/dbase/functions/dbase-get-header-info.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/functions/dbase-get-header-info.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/functions/dbase-get-header-info.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340764 Maintainer: samesch Status: ready -->
+
 <refentry xml:id="function.dbase-get-header-info" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>dbase_get_header_info</refname>
@@ -11,7 +12,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>array</type><methodname>dbase_get_header_info</methodname>
-   <methodparam><type>int</type><parameter>dbase_identifier</parameter></methodparam>
+   <methodparam><type>resource</type><parameter>dbase_identifier</parameter></methodparam>
   </methodsynopsis>
   <para>
    Liefert für die angegebene Datenbank-Verbindungskennung Informationen über
@@ -61,6 +62,8 @@
       <simpara>
        Der lesbare Name für den dBase-Typ des Feldes (d.h. date, boolean,
        etc.)
+       Die unterstützten Feldtypen sind im <link
+       linkend="intro.dbase">Einführungsabschnitt</link> aufgeführt.
       </simpara>
      </listitem>
     </varlistentry>
@@ -105,6 +108,29 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>dbase 7.0.0</entry>
+      <entry>
+       <parameter>dbase_identifier</parameter> ist nun eine <type>resource</type>
+       statt eines <type>int</type>.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/de/trunk/reference/dbase/functions/dbase-get-record-with-names.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/functions/dbase-get-record-with-names.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/functions/dbase-get-record-with-names.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340798 Maintainer: samesch Status: ready -->
+
 <refentry xml:id="function.dbase-get-record-with-names" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>dbase_get_record_with_names</refname>
@@ -11,7 +12,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>array</type><methodname>dbase_get_record_with_names</methodname>
-   <methodparam><type>int</type><parameter>dbase_identifier</parameter></methodparam>
+   <methodparam><type>resource</type><parameter>dbase_identifier</parameter></methodparam>
    <methodparam><type>int</type><parameter>record_number</parameter></methodparam>
   </methodsynopsis>
   <para>
@@ -38,7 +39,8 @@
      <term><parameter>record_number</parameter></term>
      <listitem>
       <para>
-       Der Index des Datensatzes
+       Der Index des Datensatzes zwischen <literal>1</literal> und
+       <literal>dbase_numrecords($dbase_identifier)</literal>.
       </para>
      </listitem>
     </varlistentry>
@@ -53,29 +55,39 @@
    zusätzlichen Schlüssel namens <literal>deleted</literal>, der auf 1
    gesetzt ist, wenn der Datensatz zum Löschen markiert wurde (siehe
    <function>dbase_delete_record</function>).
+   Daher ist es nicht möglich den Wert eines Feldes mit dem Namen
+   <literal>deleted</literal> mit dieser Funktion zu ermitteln.
   </para>
+  &dbase.type-conversion;
   <para>
-   Jedes Feld wird in den entsprechenden PHP-Typ umgewandelt, ausgenommen:
-   <itemizedlist>
-    <listitem>
-     <simpara>
-      Datumsfelder werden als Zeichenkette zurückgegeben.
-     </simpara>
-    </listitem>
-    <listitem>
-     <simpara>
-      Ganzzahlen, die zu einem Überlauf geführt hätten (&gt; 32 Bit), werden
-      als Zeichenkette zurückgegeben.
-     </simpara>
-    </listitem>
-   </itemizedlist>
-  </para>
-  <para>
    Falls ein Fehler auftritt, gibt
    <function>dbase_get_record_with_names</function> &false; zurück.
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>dbase 7.0.0</entry>
+      <entry>
+       <parameter>dbase_identifier</parameter> ist nun eine <type>resource</type>
+       statt eines <type>int</type>.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/de/trunk/reference/dbase/functions/dbase-get-record.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/functions/dbase-get-record.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/functions/dbase-get-record.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340797 Maintainer: samesch Status: ready -->
+
 <refentry xml:id="function.dbase-get-record" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>dbase_get_record</refname>
@@ -11,7 +12,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>array</type><methodname>dbase_get_record</methodname>
-   <methodparam><type>int</type><parameter>dbase_identifier</parameter></methodparam>
+   <methodparam><type>resource</type><parameter>dbase_identifier</parameter></methodparam>
    <methodparam><type>int</type><parameter>record_number</parameter></methodparam>
   </methodsynopsis>
   <para>
@@ -37,7 +38,8 @@
      <term><parameter>record_number</parameter></term>
      <listitem>
       <para>
-       Der Index des Datensatzes
+       Der Index des Datensatzes zwischen <literal>1</literal> und
+       <literal>dbase_numrecords($dbase_identifier)</literal>.
       </para>
      </listitem>
     </varlistentry>
@@ -53,28 +55,36 @@
    auf 1 gesetzt ist, wenn der Datensatz zum Löschen markiert wurde (siehe
    <function>dbase_delete_record</function>).
   </para>
+  &dbase.type-conversion;
   <para>
-   Jedes Feld wird in den entsprechenden PHP-Typ umgewandelt, ausgenommen:
-   <itemizedlist>
-    <listitem>
-     <simpara>
-      Datumsfelder werden als Zeichenkette zurückgegeben.
-     </simpara>
-    </listitem>
-    <listitem>
-     <simpara>
-      Ganzzahlen, die zu einem Überlauf geführt hätten (&gt; 32 Bit), werden
-      als Zeichenkette zurückgegeben.
-     </simpara>
-    </listitem>
-   </itemizedlist>
-  </para>
-  <para>
    Falls ein Fehler auftritt, gibt <function>dbase_get_record</function>
    &false; zurück.
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>dbase 7.0.0</entry>
+      <entry>
+       <parameter>dbase_identifier</parameter> ist nun eine <type>resource</type>
+       statt eines <type>int</type>.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="seealso">
   &reftitle.seealso;
   <para>

Modified: phpdoc/de/trunk/reference/dbase/functions/dbase-numfields.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/functions/dbase-numfields.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/functions/dbase-numfields.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 324735 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340755 Maintainer: samesch Status: ready -->
+
 <refentry xml:id="function.dbase-numfields" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>dbase_numfields</refname>
@@ -11,7 +12,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>int</type><methodname>dbase_numfields</methodname>
-   <methodparam><type>int</type><parameter>dbase_identifier</parameter></methodparam>
+   <methodparam><type>resource</type><parameter>dbase_identifier</parameter></methodparam>
   </methodsynopsis>
   <para>
    Gibt die Anzahl der Felder (Spalten) der angegebenen Datenbank zurück.
@@ -51,6 +52,29 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>dbase 7.0.0</entry>
+      <entry>
+       <parameter>dbase_identifier</parameter> ist nun eine <type>resource</type>
+       statt eines <type>int</type>.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/de/trunk/reference/dbase/functions/dbase-numrecords.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/functions/dbase-numrecords.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/functions/dbase-numrecords.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 324735 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340755 Maintainer: samesch Status: ready -->
+
 <refentry xml:id="function.dbase-numrecords" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>dbase_numrecords</refname>
@@ -11,7 +12,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>int</type><methodname>dbase_numrecords</methodname>
-   <methodparam><type>int</type><parameter>dbase_identifier</parameter></methodparam>
+   <methodparam><type>resource</type><parameter>dbase_identifier</parameter></methodparam>
   </methodsynopsis>
   <para>
    Gibt die Anzahl der Datensätze (Zeilen) der angegebenen Datenbank zurück.
@@ -51,6 +52,29 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>dbase 7.0.0</entry>
+      <entry>
+       <parameter>dbase_identifier</parameter> ist nun eine <type>resource</type>
+       statt eines <type>int</type>.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/de/trunk/reference/dbase/functions/dbase-open.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/functions/dbase-open.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/functions/dbase-open.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340755 Maintainer: samesch Status: ready -->
+
 <refentry xml:id="function.dbase-open" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>dbase_open</refname>
@@ -10,7 +11,7 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <type>int</type><methodname>dbase_open</methodname>
+   <type>resource</type><methodname>dbase_open</methodname>
    <methodparam><type>string</type><parameter>filename</parameter></methodparam>
    <methodparam><type>int</type><parameter>mode</parameter></methodparam>
   </methodsynopsis>
@@ -51,6 +52,11 @@
         verwendet werden.
        </para>
       </note>
+      <para>
+       Von dbase 7.0.0 an kann <constant>DBASE_RDONLY</constant>
+       bzw. <constant>DBASE_RDWR</constant> verwendet werden, um den
+       <parameter>mode</parameter> anzugeben.
+      </para>
      </listitem>
     </varlistentry>
    </variablelist>
@@ -57,6 +63,29 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>dbase 7.0.0</entry>
+      <entry>
+       Der Rückgabewert ist nun eine <type>resource</type> anstatt eines
+       <type>int</type>.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/de/trunk/reference/dbase/functions/dbase-pack.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/functions/dbase-pack.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/functions/dbase-pack.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340766 Maintainer: samesch Status: ready -->
+
 <refentry xml:id="function.dbase-pack" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>dbase_pack</refname>
@@ -11,11 +12,13 @@
   &reftitle.description;
   <methodsynopsis>
    <type>bool</type><methodname>dbase_pack</methodname>
-   <methodparam><type>int</type><parameter>dbase_identifier</parameter></methodparam>
+   <methodparam><type>resource</type><parameter>dbase_identifier</parameter></methodparam>
   </methodsynopsis>
   <para>
    Entfernt die mittels <function>dbase_delete_record</function> als gelöscht
    markierten Datensätze endgültig aus der angegebenen Datenbank.
+   Es ist zu beachten, dass die Datei nach erfolgreichem Packen gekürzt wird
+   (anders als bei PACK-Kommando von dBASE III).
   </para>
  </refsect1>

@@ -44,6 +47,29 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>dbase 7.0.0</entry>
+      <entry>
+       <parameter>dbase_identifier</parameter> ist nun eine <type>resource</type>
+       statt eines <type>int</type>.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>

Modified: phpdoc/de/trunk/reference/dbase/functions/dbase-replace-record.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/functions/dbase-replace-record.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/functions/dbase-replace-record.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340755 Maintainer: samesch Status: ready -->
+
 <refentry xml:id="function.dbase-replace-record" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>dbase_replace_record</refname>
@@ -11,7 +12,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>bool</type><methodname>dbase_replace_record</methodname>
-   <methodparam><type>int</type><parameter>dbase_identifier</parameter></methodparam>
+   <methodparam><type>resource</type><parameter>dbase_identifier</parameter></methodparam>
    <methodparam><type>array</type><parameter>record</parameter></methodparam>
    <methodparam><type>int</type><parameter>record_number</parameter></methodparam>
   </methodsynopsis>
@@ -73,6 +74,29 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>dbase 7.0.0</entry>
+      <entry>
+       <parameter>dbase_identifier</parameter> ist nun eine <type>resource</type>
+       statt eines <type>int</type>.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>
@@ -95,6 +119,9 @@
   // das Datumsfeld mit dem aktuellen Zeitstempel aktualisieren
   $datensatz['Datum'] = date('Ymd');

+  // wandle den Datensatz in ein indexiertes Array um
+  $datensatz = array_values($datensatz);
+
   // den Datensatz ersetzen
   dbase_replace_record($db, $datensatz, 1);
   dbase_close($db);
@@ -107,6 +134,20 @@
   </para>
  </refsect1>

+ <refsect1 role="notes">
+  &reftitle.notes;
+  <note>
+   <para>
+    Boolesche Felder ergeben einen <type>integer</type>-Elementwert
+    (<literal>0</literal> oder <literal>1</literal>), wenn sie per
+    <function>dbase_get_record</function> oder
+    <function>dbase_get_record_with_names</function> gelesen werden. Werden sie
+    zurückgeschrieben, wird der Wert zu <literal>0</literal>, so dass darauf
+    geachtet werden muss, den Wert ordnungsgemäß anzupassen.
+   </para>
+  </note>
+ </refsect1>
+
  <refsect1 role="seealso">
   &reftitle.seealso;
   <para>

Modified: phpdoc/de/trunk/reference/dbase/setup.xml
===================================================================
--- phpdoc/de/trunk/reference/dbase/setup.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/dbase/setup.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 288721 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 340755 Maintainer: samesch Status: ready -->

 <chapter xml:id="dbase.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  &reftitle.setup;
@@ -26,7 +26,11 @@
  <!-- {{{ Resources -->
  <section xml:id="dbase.resources">
   &reftitle.resources;
-  &no.resource;
+  <para>
+   Von 7.0.0 an ist der Ressourcetyp <literal>dbase</literal> definiert,
+   der von <function>dbase_open</function> und <function>dbase_create</function>
+   zurückgegeben wird.
+  </para>
  </section>
  <!-- }}} -->


Modified: phpdoc/de/trunk/reference/filesystem/functions/realpath.xml
===================================================================
--- phpdoc/de/trunk/reference/filesystem/functions/realpath.xml	2018-04-19 20:27:52 UTC (rev 344755)
+++ phpdoc/de/trunk/reference/filesystem/functions/realpath.xml	2018-04-19 23:01:33 UTC (rev 344756)
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 344112 Maintainer: nikic Status: ready -->
+<!-- EN-Revision: 344650 Maintainer: nikic Status: ready -->
+
 <refentry xml:id="function.realpath" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>realpath</refname>
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.