svn: /phpdoc/de/trunk/ language/context/ssl.xml reference/exec/functions/escapeshellcmd.xml reference/exec/functions/proc-open.xml reference/filesystem/functions/fopen.xml reference/filesystem/ini.xml reference/gnupg/functions/gnupg-decrypt.xml reference/info/functions/assert.xml reference/mail/functions/ezmlm-hash.xml reference/mysqli/constants.xml reference/mysqli/mysqli/autocommit.xml reference/mysqli/mysqli/close.xml reference/mysqli/mysqli/stat.xml reference/mysqli/mysqli_stmt/attr-get.xml
[email protected] (Christoph Michael Becker)
| Newsgroups | php.doc.de |
|---|---|
| Message-ID | <[email protected]> |
cmb Sun, 21 Jun 2020 12:41:36 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=350075
Log:
Sync with EN
Changed paths:
U phpdoc/de/trunk/language/context/ssl.xml
U phpdoc/de/trunk/reference/exec/functions/escapeshellcmd.xml
U phpdoc/de/trunk/reference/exec/functions/proc-open.xml
U phpdoc/de/trunk/reference/filesystem/functions/fopen.xml
U phpdoc/de/trunk/reference/filesystem/ini.xml
U phpdoc/de/trunk/reference/gnupg/functions/gnupg-decrypt.xml
U phpdoc/de/trunk/reference/info/functions/assert.xml
U phpdoc/de/trunk/reference/mail/functions/ezmlm-hash.xml
U phpdoc/de/trunk/reference/mysqli/constants.xml
U phpdoc/de/trunk/reference/mysqli/mysqli/autocommit.xml
U phpdoc/de/trunk/reference/mysqli/mysqli/close.xml
U phpdoc/de/trunk/reference/mysqli/mysqli/stat.xml
U phpdoc/de/trunk/reference/mysqli/mysqli_stmt/attr-get.xml
U phpdoc/de/trunk/reference/mysqli/mysqli_stmt/attr-set.xml
U phpdoc/de/trunk/reference/mysqli/mysqli_stmt/bind-param.xml
U phpdoc/de/trunk/reference/mysqli/mysqli_stmt/bind-result.xml
U phpdoc/de/trunk/reference/mysqli/mysqli_stmt/close.xml
U phpdoc/de/trunk/reference/mysqli/mysqli_stmt/construct.xml
U phpdoc/de/trunk/reference/mysqli/mysqli_stmt/data-seek.xml
U phpdoc/de/trunk/reference/mysqli/mysqli_stmt/more-results.xml
U phpdoc/de/trunk/reference/mysqli/mysqli_stmt/next-result.xml
U phpdoc/de/trunk/reference/mysqli/mysqli_stmt/num-rows.xml
U phpdoc/de/trunk/reference/mysqli/mysqli_stmt/send-long-data.xml
U phpdoc/de/trunk/reference/mysqli/mysqli_stmt/store-result.xml
svn-diffs-350075.txt
(text/x-diff, 29.9 KB)
Modified: phpdoc/de/trunk/language/context/ssl.xml
===================================================================
--- phpdoc/de/trunk/language/context/ssl.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/language/context/ssl.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 341125 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 350049 Maintainer: nobody Status: ready -->
<refentry xml:id="context.ssl" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" role="noversion">
<refnamediv>
@@ -285,6 +285,23 @@
</para>
</listitem>
</varlistentry>
+ <varlistentry xml:id="context.ssl.security-level">
+ <term>
+ <parameter>security_level</parameter>
+ <type>integer</type>
+ </term>
+ <listitem>
+ <para>
+ Legt die Sicherheitsstufe fest. Falls nicht angegeben, wird die Standard-Sicherheitsstufe der Bibliothek verwendet.
+ Die Sicherheitsstufen sind in
+ <link xlink:href="&url.openssl.security-level;">SSL_CTX_get_security_level(3)</link>
+ beschrieben.
+ </para>
+ <para>
+ Verfügbar von PHP 7.2.0 und OpenSSL 1.1.0 an.
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
</para>
</refsect1><!-- }}} -->
@@ -302,6 +319,12 @@
</thead>
<tbody>
<row>
+ <entry>7.2.0</entry>
+ <entry>
+ <parameter>security_levels</parameter> hinzugefügt. Erfordert OpenSSL >= 1.1.0.
+ </entry>
+ </row>
+ <row>
<entry>5.6.0</entry>
<entry>
Die Parameter <parameter>peer_fingerprint</parameter> und <parameter>verify_peer_name</parameter>
Modified: phpdoc/de/trunk/reference/exec/functions/escapeshellcmd.xml
===================================================================
--- phpdoc/de/trunk/reference/exec/functions/escapeshellcmd.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/exec/functions/escapeshellcmd.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 344401 Maintainer: gerdtsteltner Status: ready -->
+<!-- EN-Revision: 349978 Maintainer: gerdtsteltner Status: ready -->
<refentry xml:id="function.escapeshellcmd" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>escapeshellcmd</refname>
@@ -28,8 +28,9 @@
Folgende Zeichen wird ein Backslash vorangestellt:
<literal>&#;`|*?~<>^()[]{}$\</literal>, <literal>\x0A</literal>
und <literal>\xFF</literal>. <literal>'</literal> und <literal>"</literal>
- werden nur maskiert, wenn sie nicht gepaart auftreten. In Windows werden alle
- diese Zeichen sowie <literal>%</literal> und <literal>!</literal> durch ein Leerzeichen ersetzt.
+ werden nur maskiert, wenn sie nicht gepaart auftreten. Unter Windows wird all
+ diesen Zeichen sowie <literal>%</literal> und <literal>!</literal> ein Caret-Zeichen
+ (<literal>^</literal>) vorangestellt.
</para>
</refsect1>
@@ -107,6 +108,13 @@
Ausrufezeichen werden durch Leerzeichen ersetzt.
</entry>
</row>
+ <row>
+ <entry>5.3.0</entry>
+ <entry>
+ Unter Windows werden die Sonderzeichen nun ordnungsgemäß maskiert.
+ Zuvor wurden sie durch ein Leerzeichen ersetzt.
+ </entry>
+ </row>
</tbody>
</tgroup>
</informaltable>
Modified: phpdoc/de/trunk/reference/exec/functions/proc-open.xml
===================================================================
--- phpdoc/de/trunk/reference/exec/functions/proc-open.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/exec/functions/proc-open.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 349498 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 350047 Maintainer: sammywg Status: ready -->
<refentry xml:id='function.proc-open' xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>proc_open</refname>
@@ -71,6 +71,13 @@
In diesem Fall wird der Prozess direkt gestartet (ohne Umweg über die Shell)
und PHP kümmert sich um das nötige Maskieren von Argumenten.
</para>
+ <note>
+ <para>
+ Unter Windows geht die Argumentenmaskierung der &array;-Element davon aus, dass das
+ Parsen der Kommandozeile des auszuführenden Kommandos kompatibel mit dem Parsen der
+ Kommandozeile wie von der VC-Laufzeitumgebung durchgeführt ist.
+ </para>
+ </note>
</listitem>
</varlistentry>
<varlistentry>
Modified: phpdoc/de/trunk/reference/filesystem/functions/fopen.xml
===================================================================
--- phpdoc/de/trunk/reference/filesystem/functions/fopen.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/filesystem/functions/fopen.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 347660 Maintainer: khp Status: ready -->
+<!-- EN-Revision: 350008 Maintainer: khp Status: ready -->
<refentry xml:id="function.fopen" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>fopen</refname>
@@ -211,7 +211,7 @@
Zeilenendszeichen für Ihr Betriebssystem nutzen. Unix-basierte
Systeme nutzen <literal>\n</literal> als Zeilenendszeichen, Windows-basierte
Systeme nutzen <literal>\r\n</literal> als Zeilenendszeichen
- und Macintosh-basierte Systeme nutzen <literal>\r</literal> als
+ und Macintosh-basierte Systeme (Mac OS Classic) nutzten <literal>\r</literal> als
Zeilenendszeichen.
</para>
<para>
@@ -230,17 +230,15 @@
<parameter>mode</parameter> Parameters angegeben.
</para>
<para>
- Der Standard Übersetzungsmodus hängt von der SAPI und der PHP Version
- ab, die genutzt wird; daher ist es empfehlenswert, immer den passenden
- Flag aus Portabilitätsgründen anzugeben. Es
- sollte der <literal>'t'</literal> Modus genutzt werden, wenn mit Textdateien
+ Der Standard Übersetzungsmodus ist <literal>'b'</literal>. Es
+ kann der <literal>'t'</literal> Modus genutzt werden, wenn mit Textdateien
gearbeitet wird, und <literal>\n</literal> verwendet wird, um die Zeilenenden im
Skript zu begrenzen, aber erwartet wird, dass die Dateien mit Anwendungen
- wie etwa Notepad lesbar sind. Ansonsten sollte
+ wie etwa alten Versionen von Notepad lesbar sind. Ansonsten sollte
<literal>'b'</literal> genutzt werden.
</para>
<para>
- Wird beim Arbeiten mit binären Dateien nicht das 'b' Flag angegeben,
+ Wird beim Arbeiten mit binären Dateien das 't' Flag angegeben,
können seltsame Probleme mit den Daten auftreten, einschließlich
zerstörter Bild Dateien und merkwürdiger Probleme mit
<literal>\r\n</literal> Zeichen.
@@ -248,14 +246,7 @@
</note>
<note>
<para>
- Aus Portabilitätsgründen wird dringend empfohlen, dass immer das
- 'b' Flag genutzet wird, wenn Dateien mit <function>fopen</function>
- geöffnet werden.
- </para>
- </note>
- <note>
- <para>
- Außerdem wird aus Gründen der Portabilität dringend empfohlen, dass
+ Aus Portabilitätsgründen wird ebenfalls dringend empfohlen, dass
Code umgeschrieben wird, der den <literal>'t'</literal> Modus nutzt oder
sich darauf verlässt, so dass die korrekten Zeilenendungen und der
<literal>'b'</literal> Modus stattdessen genutzt werden.
Modified: phpdoc/de/trunk/reference/filesystem/ini.xml
===================================================================
--- phpdoc/de/trunk/reference/filesystem/ini.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/filesystem/ini.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 348373 Maintainer: wiesemann Status: ready -->
+<!-- EN-Revision: 350020 Maintainer: wiesemann Status: ready -->
<section xml:id="filesystem.configuration" xmlns="http://docbook.org/ns/docbook">
&reftitle.runtime;
@@ -130,6 +130,7 @@
<para>
Standardzeitbeschränkung für Socket-basierende Streams
in Sekunden.
+ Ein negativer Wert bedeutet eine unendliche Zeitbeschränkung.
</para>
</listitem>
</varlistentry>
Modified: phpdoc/de/trunk/reference/gnupg/functions/gnupg-decrypt.xml
===================================================================
--- phpdoc/de/trunk/reference/gnupg/functions/gnupg-decrypt.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/gnupg/functions/gnupg-decrypt.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 317502 Maintainer: tihox Status: ready -->
+<!-- EN-Revision: 350048 Maintainer: tihox Status: ready -->
<!-- Reviewed: no -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.gnupg-decrypt">
@@ -69,7 +69,7 @@
</programlisting>
</example>
<example>
- <title>OO (objektorientiertes)<function>gnupg_encrypt</function> Beispiel</title>
+ <title>OO (objektorientiertes)<function>gnupg_decrypt</function> Beispiel</title>
<programlisting role="php">
<![CDATA[
<?php
Modified: phpdoc/de/trunk/reference/info/functions/assert.xml
===================================================================
--- phpdoc/de/trunk/reference/info/functions/assert.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/info/functions/assert.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 342126 Maintainer: cmb Status: ready -->
+<!-- EN-Revision: 350018 Maintainer: cmb Status: ready -->
<refentry xml:id="function.assert" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -199,6 +199,8 @@
<para>
Eine optionale Beschreibung, die in der Fehlermeldung enthalten sein
wird, wenn die <parameter>assertion</parameter> fehlschlägt.
+ Von PHP 7.0.0 an wird, falls keine Beschreibung angegeben wurde, eine Standardbeschreibung,
+ die gleich dem Quellcode des Aufrufs von <function>assert</function> ist, bereitgestellt.
</para>
</listitem>
</varlistentry>
Modified: phpdoc/de/trunk/reference/mail/functions/ezmlm-hash.xml
===================================================================
--- phpdoc/de/trunk/reference/mail/functions/ezmlm-hash.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mail/functions/ezmlm-hash.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: wiesemann Status: ready -->
+<!-- EN-Revision: 350019 Maintainer: wiesemann Status: ready -->
<refentry xml:id="function.ezmlm-hash" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>ezmlm_hash</refname>
@@ -7,6 +7,10 @@
<refpurpose>Berechnet den Hash-Wert, der von EZMLM benötigt wird</refpurpose>
</refnamediv>
+ <refsynopsisdiv>
+ &warn.deprecated.function-7-4-0;
+ </refsynopsisdiv>
+
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
Modified: phpdoc/de/trunk/reference/mysqli/constants.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/constants.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/constants.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 337739 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 350058 Maintainer: nobody Status: ready -->
<appendix xml:id="mysqli.constants" xmlns="http://docbook.org/ns/docbook">
&reftitle.constants;
@@ -41,6 +41,41 @@
</para>
</listitem>
</varlistentry>
+ <varlistentry xml:id="constantmysqli-opt-int-and-float-native">
+ <term><constant>MYSQLI_OPT_INT_AND_FLOAT_NATIVE</constant></term>
+ <listitem>
+ <para>
+ Konvertiert Integer- und Float-Spalten zurück in PHP Zahlen. Nur gültig fpr mysqlnd.
+ Verfügbar seit PHP 5.3.0.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry xml:id="constantmysqli-opt-net-cmd-buffer-size">
+ <term><constant>MYSQLI_OPT_NET_CMD_BUFFER_SIZE</constant></term>
+ <listitem>
+ <para>
+ Die Größe des internen Kommando-/Netzwerkpuffers. Nur gültigt für mysqlnd.
+ Verfügbar seit PHP 5.3.0.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry xml:id="constantmysqli-opt-net-read-buffer-size">
+ <term><constant>MYSQLI_OPT_NET_READ_BUFFER_SIZE</constant></term>
+ <listitem>
+ <para>
+ Die Maximalgröße der Datenblöcke in Bytes, wenn der Body eines MySQL-Kommando-Pakets gelesen wird.
+ Nur gültig für mysqlnd. Verfügbar seit PHP 5.3.0.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry xml:id="constantmysqli-opt-ssl-verify-server-cert">
+ <term><constant>MYSQLI_OPT_SSL_VERIFY_SERVER_CERT</constant></term>
+ <listitem>
+ <para>
+ Verfügbar seit PHP 5.3.0. (MySQL 5.1.10 und höher)
+ </para>
+ </listitem>
+ </varlistentry>
<varlistentry xml:id="constantmysqli-init-command">
<term><constant>MYSQLI_INIT_COMMAND</constant></term>
<listitem>
@@ -640,6 +675,14 @@
</para>
</listitem>
</varlistentry>
+ <varlistentry xml:id="constantmysqli-server-public-key">
+ <term><constant>MYSQLI_SERVER_PUBLIC_KEY</constant></term>
+ <listitem>
+ <para>
+ Verfügbar seit PHP 5.5.0.
+ </para>
+ </listitem>
+ </varlistentry>
<varlistentry xml:id="constantmysqli-refresh-grant">
<term><constant>MYSQLI_REFRESH_GRANT</constant></term>
<listitem>
@@ -777,6 +820,14 @@
</para>
</listitem>
</varlistentry>
+ <varlistentry xml:id="constantmysqli-client-ssl-dont-verify-server-cert">
+ <term><constant>MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT</constant></term>
+ <listitem>
+ <para>
+ Verfügbar seit PHP 5.6.16. (MySQL 5.6.5 und höher)
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
</section>
</appendix>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli/autocommit.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli/autocommit.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli/autocommit.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 330225 Maintainer: cmb Status: ready -->
+<!-- EN-Revision: 350059 Maintainer: cmb Status: ready -->
<refentry xml:id="mysqli.autocommit" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -13,7 +13,7 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
- <type>bool</type><methodname>mysqli::autocommit</methodname>
+ <modifier>public</modifier> <type>bool</type><methodname>mysqli::autocommit</methodname>
<methodparam><type>bool</type><parameter>mode</parameter></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli/close.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli/close.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli/close.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 337721 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 350059 Maintainer: nobody Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="mysqli.close" xmlns="http://docbook.org/ns/docbook">
@@ -14,7 +14,7 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
- <type>bool</type><methodname>mysqli::close</methodname>
+ <modifier>public</modifier> <type>bool</type><methodname>mysqli::close</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli/stat.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli/stat.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli/stat.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 322005 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 350059 Maintainer: nobody Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="mysqli.stat" xmlns="http://docbook.org/ns/docbook">
@@ -14,7 +14,7 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
- <type>string</type><methodname>mysqli::stat</methodname>
+ <modifier>public</modifier> <type>string</type><methodname>mysqli::stat</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli_stmt/attr-get.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli_stmt/attr-get.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli_stmt/attr-get.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 322005 Maintainer: cmb Status: ready -->
+<!-- EN-Revision: 350065 Maintainer: cmb Status: ready -->
<refentry xml:id="mysqli-stmt.attr-get" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -13,7 +13,7 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
- <type>int</type><methodname>mysqli_stmt::attr_get</methodname>
+ <modifier>public</modifier> <type>int</type><methodname>mysqli_stmt::attr_get</methodname>
<methodparam><type>int</type><parameter>attr</parameter></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli_stmt/attr-set.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli_stmt/attr-set.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli_stmt/attr-set.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 332890 Maintainer: cmb Status: ready -->
+<!-- EN-Revision: 350065 Maintainer: cmb Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="mysqli-stmt.attr-set" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -13,7 +13,7 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
- <type>bool</type><methodname>mysqli_stmt::attr_set</methodname>
+ <modifier>public</modifier> <type>bool</type><methodname>mysqli_stmt::attr_set</methodname>
<methodparam><type>int</type><parameter>attr</parameter></methodparam>
<methodparam><type>int</type><parameter>mode</parameter></methodparam>
</methodsynopsis>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli_stmt/bind-param.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli_stmt/bind-param.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli_stmt/bind-param.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 322005 Maintainer: cmb Status: ready -->
+<!-- EN-Revision: 350065 Maintainer: cmb Status: ready -->
<refentry xml:id="mysqli-stmt.bind-param" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -13,7 +13,7 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
- <type>bool</type><methodname>mysqli_stmt::bind_param</methodname>
+ <modifier>public</modifier> <type>bool</type><methodname>mysqli_stmt::bind_param</methodname>
<methodparam><type>string</type><parameter>types</parameter></methodparam>
<methodparam><type>mixed</type><parameter role="reference">var1</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter role="reference">...</parameter></methodparam>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli_stmt/bind-result.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli_stmt/bind-result.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli_stmt/bind-result.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 331998 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 350065 Maintainer: nobody Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="mysqli-stmt.bind-result" xmlns="http://docbook.org/ns/docbook">
@@ -14,7 +14,7 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
- <type>bool</type><methodname>mysqli_stmt::bind_result</methodname>
+ <modifier>public</modifier> <type>bool</type><methodname>mysqli_stmt::bind_result</methodname>
<methodparam><type>mixed</type><parameter role="reference">var1</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter role="reference">...</parameter></methodparam>
</methodsynopsis>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli_stmt/close.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli_stmt/close.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli_stmt/close.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 322005 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 350065 Maintainer: nobody Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="mysqli-stmt.close" xmlns="http://docbook.org/ns/docbook">
@@ -14,7 +14,7 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
- <type>bool</type><methodname>mysqli_stmt::close</methodname>
+ <modifier>public</modifier> <type>bool</type><methodname>mysqli_stmt::close</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli_stmt/construct.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli_stmt/construct.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli_stmt/construct.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 336014 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 350065 Maintainer: nobody Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="mysqli-stmt.construct" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -12,7 +12,7 @@
<refsect1 role="description">
&reftitle.description;
<constructorsynopsis>
- <methodname>mysqli_stmt::__construct</methodname>
+ <modifier>public</modifier> <methodname>mysqli_stmt::__construct</methodname>
<methodparam><type>mysqli</type><parameter>link</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>query</parameter></methodparam>
</constructorsynopsis>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli_stmt/data-seek.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli_stmt/data-seek.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli_stmt/data-seek.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 322005 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 350065 Maintainer: nobody Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="mysqli-stmt.data-seek" xmlns="http://docbook.org/ns/docbook">
@@ -14,7 +14,7 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
- <type>void</type><methodname>mysqli_stmt::data_seek</methodname>
+ <modifier>public</modifier> <type>void</type><methodname>mysqli_stmt::data_seek</methodname>
<methodparam><type>int</type><parameter>offset</parameter></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli_stmt/more-results.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli_stmt/more-results.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli_stmt/more-results.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 335248 Maintainer: cmb Status: ready -->
+<!-- EN-Revision: 350066 Maintainer: cmb Status: ready -->
<refentry xml:id="mysqli-stmt.more-results" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -11,11 +11,11 @@
<refsect1 role="description">
&reftitle.description;
- <para>&style.oop; (method):</para>
- <methodsynopsis>
+ <para>&style.oop;</para>
+ <methodsynopsis role="oop">
<modifier>public</modifier> <type>bool</type><methodname>mysqli_stmt::more_results</methodname>
<void />
- </methodsynopsis>
+ </methodsynopsis>
<para>&style.procedural;:</para>
<methodsynopsis>
<type>bool</type><methodname>mysqli_stmt_more_results</methodname>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli_stmt/next-result.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli_stmt/next-result.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli_stmt/next-result.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 335248 Maintainer: cmb Status: ready -->
+<!-- EN-Revision: 350066 Maintainer: cmb Status: ready -->
<refentry xml:id="mysqli-stmt.next-result" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -11,11 +11,11 @@
<refsect1 role="description">
&reftitle.description;
- <para>&style.oop; (method):</para>
- <methodsynopsis>
+ <para>&style.oop;</para>
+ <methodsynopsis role="oop">
<modifier>public</modifier> <type>bool</type><methodname>mysqli_stmt::next_result</methodname>
<void />
- </methodsynopsis>
+ </methodsynopsis>
<para>&style.procedural;:</para>
<methodsynopsis>
<type>bool</type><methodname>mysqli_stmt_next_result</methodname>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli_stmt/num-rows.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli_stmt/num-rows.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli_stmt/num-rows.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 343942 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 350065 Maintainer: nobody Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="mysqli-stmt.num-rows" xmlns="http://docbook.org/ns/docbook">
@@ -16,7 +16,7 @@
<para>&style.oop;</para>
<fieldsynopsis><type>int</type><varname linkend="mysqli-stmt.num-rows">mysqli_stmt->num_rows</varname></fieldsynopsis>
<methodsynopsis role="oop">
- <type>int</type><methodname>mysqli_stmt::num_rows</methodname>
+ <modifier>public</modifier> <type>int</type><methodname>mysqli_stmt::num_rows</methodname>
<void/>
</methodsynopsis>
<para>&style.procedural;</para>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli_stmt/send-long-data.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli_stmt/send-long-data.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli_stmt/send-long-data.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 322005 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 350065 Maintainer: nobody Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="mysqli-stmt.send-long-data" xmlns="http://docbook.org/ns/docbook">
@@ -14,7 +14,7 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
- <type>bool</type><methodname>mysqli_stmt::send_long_data</methodname>
+ <modifier>public</modifier> <type>bool</type><methodname>mysqli_stmt::send_long_data</methodname>
<methodparam><type>int</type><parameter>param_nr</parameter></methodparam>
<methodparam><type>string</type><parameter>data</parameter></methodparam>
</methodsynopsis>
Modified: phpdoc/de/trunk/reference/mysqli/mysqli_stmt/store-result.xml
===================================================================
--- phpdoc/de/trunk/reference/mysqli/mysqli_stmt/store-result.xml 2020-06-20 15:10:39 UTC (rev 350074)
+++ phpdoc/de/trunk/reference/mysqli/mysqli_stmt/store-result.xml 2020-06-21 12:41:36 UTC (rev 350075)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 349035 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 350065 Maintainer: nobody Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="mysqli-stmt.store-result" xmlns="http://docbook.org/ns/docbook">
@@ -14,7 +14,7 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
- <type>bool</type><methodname>mysqli_stmt::store_result</methodname>
+ <modifier>public</modifier> <type>bool</type><methodname>mysqli_stmt::store_result</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>