svn: /phpdoc/de/trunk/reference/ filesystem/functions/fgetcsv.xml filter/filters.xml filter/functions/filter-input-array.xml ftp/functions/ftp-ssl-connect.xml funchand/functions/call-user-func.xml funchand/functions/func-get-arg.xml funchand/functions/get-defined-functions.xml gender/book.xml gender/examples.xml gender/setup.xml gettext/functions/textdomain.xml gmagick/gmagickpixel/getcolor.xml network/constants.xml opcache/functions/opcache-get-status.xml opcache/functions/opcache-reset.xml out
[email protected] (Christoph Michael Becker)
| Newsgroups | php.doc.de |
|---|---|
| Message-ID | <[email protected]> |
cmb Wed, 11 Apr 2018 17:19:55 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=344653
Log:
Sync with EN
Changed paths:
U phpdoc/de/trunk/reference/filesystem/functions/fgetcsv.xml
U phpdoc/de/trunk/reference/filter/filters.xml
U phpdoc/de/trunk/reference/filter/functions/filter-input-array.xml
U phpdoc/de/trunk/reference/ftp/functions/ftp-ssl-connect.xml
U phpdoc/de/trunk/reference/funchand/functions/call-user-func.xml
U phpdoc/de/trunk/reference/funchand/functions/func-get-arg.xml
U phpdoc/de/trunk/reference/funchand/functions/get-defined-functions.xml
U phpdoc/de/trunk/reference/gender/book.xml
U phpdoc/de/trunk/reference/gender/examples.xml
U phpdoc/de/trunk/reference/gender/setup.xml
U phpdoc/de/trunk/reference/gettext/functions/textdomain.xml
U phpdoc/de/trunk/reference/gmagick/gmagickpixel/getcolor.xml
U phpdoc/de/trunk/reference/network/constants.xml
U phpdoc/de/trunk/reference/opcache/functions/opcache-get-status.xml
U phpdoc/de/trunk/reference/opcache/functions/opcache-reset.xml
U phpdoc/de/trunk/reference/outcontrol/book.xml
U phpdoc/de/trunk/reference/outcontrol/examples.xml
U phpdoc/de/trunk/reference/outcontrol/ini.xml
svn-diffs-344653.txt
(text/x-diff, 29.3 KB)
Modified: phpdoc/de/trunk/reference/filesystem/functions/fgetcsv.xml
===================================================================
--- phpdoc/de/trunk/reference/filesystem/functions/fgetcsv.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/filesystem/functions/fgetcsv.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 344268 Maintainer: simp Status: ready -->
+<!-- EN-Revision: 344648 Maintainer: simp Status: ready -->
<!-- Credits: khp -->
<refentry xml:id="function.fgetcsv" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -28,6 +28,13 @@
(kommaseparierte Felder) hin überprüft, und ein Array mit den
gelesenen Feldern zurückgibt.
</para>
+ <note>
+ <para>
+ Die Spracheinstellung (locale) wird von dieser Funktion beachtet. Wenn
+ <varname>LC_CTYPE</varname> z.B. den Wert <literal>en_US.UTF-8</literal> hat,
+ können Dateien in Ein-byte-Kodierung von dieser Funktion falsch gelesen werden.
+ </para>
+ </note>
</refsect1>
<refsect1 role="parameters">
@@ -196,17 +203,6 @@
</para>
</refsect1>
- <refsect1 role="notes">
- &reftitle.notes;
- <note>
- <para>
- Die Spracheinstellung (locale) wird von dieser Funktion beachtet. Wenn
- <varname>LANG</varname> z.B. den Wert <literal>en_US.UTF-8</literal> hat,
- werden Dateien in Ein-byte-Kodierung von dieser Funktion falsch gelesen.
- </para>
- </note>
- </refsect1>
-
<refsect1 role="seealso">
&reftitle.seealso;
<para>
Modified: phpdoc/de/trunk/reference/filter/filters.xml
===================================================================
--- phpdoc/de/trunk/reference/filter/filters.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/filter/filters.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 337683 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 344652 Maintainer: nobody Status: ready -->
<!-- Reviewed: no -->
<chapter xml:id="filter.filters" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -45,19 +45,44 @@
</entry>
</row>
<row>
+ <entry><constant>FILTER_VALIDATE_DOMAIN</constant></entry>
+ <entry>"validate_domain"</entry>
+ <entry>
+ <parameter>default</parameter>
+ </entry>
+ <entry>
+ <constant>FILTER_FLAG_HOSTNAME</constant>
+ </entry>
+ <entry>
+ <para>
+ Prüft, ob die Länge der Domainnamen-Labels gültig ist.
+ </para>
+ <para>
+ Validiert Domainnamen gegen RFC 1034, RFC 1035, RFC 952, RFC 1123, RFC
+ 2732, RFC 2181 und RFC 1123. Das optionale Flag
+ <constant>FILTER_FLAG_HOSTNAME</constant> ermöglicht es im Besonderen
+ Hostnamen zu validieren (diese müssen mit einem alphanummerischen
+ Zeichen beginnen, und dürfen nur alphanumerische Zeichen und
+ Bindestriche enthalten).
+ </para>
+ </entry>
+ </row>
+ <row>
<entry><constant>FILTER_VALIDATE_EMAIL</constant></entry>
<entry>"validate_email"</entry>
<entry>
<parameter>default</parameter>
</entry>
- <entry></entry>
<entry>
+ <constant>FILTER_FLAG_EMAIL_UNICODE</constant>
+ </entry>
+ <entry>
<para>
Prüft, ob der Wert eine gültige E-Mail-Adresse darstellt.
</para>
<para>
Im Allgemeinen validiert dies E-Mail-Adressen gegen die Syntax in RFC
- 822, mit den Ausnahmen, dass Kommentare und Whitespace-Folding nicht
+ 822, mit den Ausnahmen, dass Kommentare und Whitespace-Folding und punktlose Domainnamen nicht
unterstützt werden.
</para>
</entry>
@@ -135,6 +160,8 @@
<parameter>default</parameter>
</entry>
<entry>
+ <constant>FILTER_FLAG_SCHEME_REQUIRED</constant>,
+ <constant>FILTER_FLAG_HOST_REQUIRED</constant>,
<constant>FILTER_FLAG_PATH_REQUIRED</constant>,
<constant>FILTER_FLAG_QUERY_REQUIRED</constant>
</entry>
@@ -169,11 +196,25 @@
</thead>
<tbody>
<row>
+ <entry>7.0.0</entry>
+ <entry>
+ <constant>FILTER_FLAG_HOSTNAME</constant> hinzugefügt
+ </entry>
+ </row>
+ <row>
<entry>5.5.0</entry>
<entry>
<constant>FILTER_VALIDATE_MAC</constant> hinzugefügt
</entry>
</row>
+ <row>
+ <entry>5.2.1</entry>
+ <entry>
+ <constant>FILTER_VALIDATE_URL</constant> verwendet nun implizit
+ <constant>FILTER_FLAG_SCHEME_REQUIRED</constant> und
+ <constant>FILTER_FLAG_HOST_REQUIRED</constant>.
+ </entry>
+ </row>
</tbody>
</tgroup>
</informaltable>
@@ -214,6 +255,7 @@
<entry>
<constant>FILTER_FLAG_STRIP_LOW</constant>,
<constant>FILTER_FLAG_STRIP_HIGH</constant>,
+ <constant>FILTER_FLAG_STRIP_BACKTICK</constant>,
<constant>FILTER_FLAG_ENCODE_LOW</constant>,
<constant>FILTER_FLAG_ENCODE_HIGH</constant>
</entry>
@@ -252,6 +294,7 @@
<entry>
<constant>FILTER_FLAG_STRIP_LOW</constant>,
<constant>FILTER_FLAG_STRIP_HIGH</constant>,
+ <constant>FILTER_FLAG_STRIP_BACKTICK</constant>,
<constant>FILTER_FLAG_ENCODE_HIGH</constant>
</entry>
<entry>
@@ -281,6 +324,7 @@
<constant>FILTER_FLAG_NO_ENCODE_QUOTES</constant>,
<constant>FILTER_FLAG_STRIP_LOW</constant>,
<constant>FILTER_FLAG_STRIP_HIGH</constant>,
+ <constant>FILTER_FLAG_STRIP_BACKTICK</constant>,
<constant>FILTER_FLAG_ENCODE_LOW</constant>,
<constant>FILTER_FLAG_ENCODE_HIGH</constant>,
<constant>FILTER_FLAG_ENCODE_AMP</constant>
@@ -308,6 +352,7 @@
<entry>
<constant>FILTER_FLAG_STRIP_LOW</constant>,
<constant>FILTER_FLAG_STRIP_HIGH</constant>,
+ <constant>FILTER_FLAG_STRIP_BACKTICK</constant>,
<constant>FILTER_FLAG_ENCODE_LOW</constant>,
<constant>FILTER_FLAG_ENCODE_HIGH</constant>,
<constant>FILTER_FLAG_ENCODE_AMP</constant>
@@ -440,6 +485,18 @@
</entry>
</row>
<row>
+ <entry><constant>FILTER_FLAG_STRIP_BACKTICK</constant></entry>
+ <entry>
+ <constant>FILTER_SANITIZE_ENCODED</constant>,
+ <constant>FILTER_SANITIZE_SPECIAL_CHARS</constant>,
+ <constant>FILTER_SANITIZE_STRING</constant>,
+ <constant>FILTER_UNSAFE_RAW</constant>
+ </entry>
+ <entry>
+ Entfernt Backtick-Zeichen.
+ </entry>
+ </row>
+ <row>
<entry><constant>FILTER_FLAG_ALLOW_FRACTION</constant></entry>
<entry>
<constant>FILTER_SANITIZE_NUMBER_FLOAT</constant>
@@ -545,6 +602,15 @@
</entry>
</row>
<row>
+ <entry><constant>FILTER_FLAG_EMAIL_UNICODE</constant></entry>
+ <entry>
+ <constant>FILTER_VALIDATE_EMAIL</constant>
+ </entry>
+ <entry>
+ Erlaubt, dass der lokale Teil der E-Mail-Adresse Unicode-Zeichen enthalten kann.
+ </entry>
+ </row>
+ <row>
<entry><constant>FILTER_FLAG_IPV4</constant></entry>
<entry>
<constant>FILTER_VALIDATE_IP</constant>
@@ -585,13 +651,37 @@
<constant>FILTER_VALIDATE_IP</constant>
</entry>
<entry>
- Fails validation for the following reserved IPv4 ranges:
+ <para>
+ Die Validierung schlägt für die folgenden reservierten IPv4-Bereiche fehl:
<literal>0.0.0.0/8</literal>, <literal>169.254.0.0/16</literal>,
- <literal>192.0.2.0/24</literal> and <literal>224.0.0.0/4</literal>.
- This flag does not apply to IPv6 addresses.
+ <literal>127.0.0.0/8</literal> and <literal>240.0.0.0/4</literal>.
+ </para>
+ <para>
+ Die Validierung schlägt für die folgenden reservierten IPv6-Bereiche fehl:
+ <literal>::1/128</literal>, <literal>::/128</literal>,
+ <literal>::ffff:0:0/96</literal> and <literal>fe80::/10</literal>.
+ </para>
</entry>
</row>
<row>
+ <entry><constant>FILTER_FLAG_SCHEME_REQUIRED</constant></entry>
+ <entry>
+ <constant>FILTER_VALIDATE_URL</constant>
+ </entry>
+ <entry>
+ Verlangt, dass der <acronym>URL</acronym> ein Schema enthält.
+ </entry>
+ </row>
+ <row>
+ <entry><constant>FILTER_FLAG_HOST_REQUIRED</constant></entry>
+ <entry>
+ <constant>FILTER_VALIDATE_URL</constant>
+ </entry>
+ <entry>
+ Verlangt, dass der <acronym>URL</acronym> einen Host enthält.
+ </entry>
+ </row>
+ <row>
<entry><constant>FILTER_FLAG_PATH_REQUIRED</constant></entry>
<entry>
<constant>FILTER_VALIDATE_URL</constant>
@@ -609,10 +699,72 @@
Requires the <acronym>URL</acronym> to contain a query string.
</entry>
</row>
+ <row>
+ <entry><constant>FILTER_REQUIRE_SCALAR</constant></entry>
+ <entry>
+ </entry>
+ <entry>
+ Verlangt, dass der Wert skalar ist.
+ </entry>
+ </row>
+ <row>
+ <entry><constant>FILTER_REQUIRE_ARRAY</constant></entry>
+ <entry>
+ </entry>
+ <entry>
+ Verlang, dass der Wert ein Array ist.
+ </entry>
+ </row>
+ <row>
+ <entry><constant>FILTER_FORCE_ARRAY</constant></entry>
+ <entry>
+ </entry>
+ <entry>
+ Ist der Wert skalar, wird er als Array mit dem skalaren Wert als
+ einzigem Element behandelt.
+ </entry>
+ </row>
</tbody>
</tgroup>
</table>
</para>
+
+ <simplesect role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>7.1.0</entry>
+ <entry>
+ <constant>FILTER_FLAG_EMAIL_UNICODE</constant> wurde hinzugefügt.
+ </entry>
+ </row>
+ <row>
+ <entry>5.3.2</entry>
+ <entry>
+ <constant>FILTER_FLAG_STRIP_BACKTICK</constant> wurde hinzugefügt.
+ </entry>
+ </row>
+ <row>
+ <entry>5.2.10</entry>
+ <entry>
+ <constant>FILTER_FLAG_NO_RES_RANGE</constant> unterstützt nun auch IPv6-Adressen.
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </simplesect>
+
</section>
<!--}}}-->
</chapter>
Modified: phpdoc/de/trunk/reference/filter/functions/filter-input-array.xml
===================================================================
--- phpdoc/de/trunk/reference/filter/functions/filter-input-array.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/filter/functions/filter-input-array.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!-- EN-Revision: 340641 Maintainer: cmb Status: ready -->
<!-- $Revision$ -->
+<!-- EN-Revision: 343899 Maintainer: cmb Status: ready -->
+
<refentry xml:id="function.filter-input-array" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>filter_input_array</refname>
@@ -12,7 +13,7 @@
<type>mixed</type><methodname>filter_input_array</methodname>
<methodparam><type>int</type><parameter>type</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>definition</parameter></methodparam>
- <methodparam choice="opt"><type>bool</type><parameter>add_empty</parameter><initializer>true</initializer></methodparam>
+ <methodparam choice="opt"><type>bool</type><parameter>add_empty</parameter><initializer>&true;</initializer></methodparam>
</methodsynopsis>
<para>
Diese Funktion ist nützlich, um mehrere Werte abzufragen ohne wiederholend
Modified: phpdoc/de/trunk/reference/ftp/functions/ftp-ssl-connect.xml
===================================================================
--- phpdoc/de/trunk/reference/ftp/functions/ftp-ssl-connect.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/ftp/functions/ftp-ssl-connect.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 343263 Maintainer: wiesemann Status: ready -->
+<!-- EN-Revision: 344352 Maintainer: wiesemann Status: ready -->
+
<refentry xml:id="function.ftp-ssl-connect" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>ftp_ssl_connect</refname>
Modified: phpdoc/de/trunk/reference/funchand/functions/call-user-func.xml
===================================================================
--- phpdoc/de/trunk/reference/funchand/functions/call-user-func.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/funchand/functions/call-user-func.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 335189 Maintainer: simp Status: ready -->
+<!-- EN-Revision: 340058 Maintainer: simp Status: ready -->
<refentry xml:id="function.call-user-func" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -85,7 +85,7 @@
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
- Gibt den Rückgabewert des Callbacks zurück oder im Fehlerfall &false;
+ Gibt den Rückgabewert des Callbacks zurück.
</para>
</refsect1>
Modified: phpdoc/de/trunk/reference/funchand/functions/func-get-arg.xml
===================================================================
--- phpdoc/de/trunk/reference/funchand/functions/func-get-arg.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/funchand/functions/func-get-arg.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 336771 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 338280 Maintainer: hholzgra Status: ready -->
+
<refentry xml:id="function.func-get-arg" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>func_get_arg</refname>
@@ -190,9 +191,16 @@
?>
]]>
</programlisting>
- &example.outputs;
+ &example.outputs.7;
<screen>
Wie übergeben : 'bar'
+Nach Änderung : 'baz'
+Wie übergeben : 'bar'
+Nach Änderung : 'baz'
+ </screen>
+ &example.outputs.5;
+ <screen>
+Wie übergeben : 'bar'
Nach Änderung : 'bar'
Wie übergeben : 'bar'
Nach Änderung : 'baz'
Modified: phpdoc/de/trunk/reference/funchand/functions/get-defined-functions.xml
===================================================================
--- phpdoc/de/trunk/reference/funchand/functions/get-defined-functions.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/funchand/functions/get-defined-functions.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 328488 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 341597 Maintainer: hholzgra Status: ready -->
+
<refentry xml:id="function.get-defined-functions" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>get_defined_functions</refname>
@@ -11,7 +12,7 @@
&reftitle.description;
<methodsynopsis>
<type>array</type><methodname>get_defined_functions</methodname>
- <void/>
+ <methodparam choice="opt"><type>bool</type><parameter>exclude_disabled</parameter><initializer>&false;</initializer></methodparam>
</methodsynopsis>
<para>
Liefert ein Array aller definierten Funktionen
@@ -18,6 +19,20 @@
</para>
</refsect1>
+ <refsect1 role="parameters">
+ &reftitle.parameters;
+ <variablelist>
+ <varlistentry>
+ <term><parameter>exclude_disabled</parameter></term>
+ <listitem>
+ <para>
+ Ob deaktivierte Funktion im Rückgabewert ausgeschlossen werden sollen.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
@@ -30,6 +45,28 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>PHP 7.0.15, PHP 7.1.1</entry>
+ <entry>
+ Der <parameter>exclude_disabled</parameter> Parameter wurde hinzugefügt.
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </refsect1>
+
<refsect1 role="examples">
&reftitle.examples;
<para>
Modified: phpdoc/de/trunk/reference/gender/book.xml
===================================================================
--- phpdoc/de/trunk/reference/gender/book.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/gender/book.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 334955 Maintainer: cjantz Status: ready -->
+<!-- EN-Revision: 342988 Maintainer: cjantz Status: ready -->
<!-- Reviewed: no -->
<book xml:id="book.gender" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
Modified: phpdoc/de/trunk/reference/gender/examples.xml
===================================================================
--- phpdoc/de/trunk/reference/gender/examples.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/gender/examples.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 334955 Maintainer: cjantz Status: ready -->
+<!-- EN-Revision: 342988 Maintainer: cjantz Status: ready -->
<!-- Reviewed: no -->
<chapter xml:id="gender.examples" xmlns="http://docbook.org/ns/docbook">
Modified: phpdoc/de/trunk/reference/gender/setup.xml
===================================================================
--- phpdoc/de/trunk/reference/gender/setup.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/gender/setup.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 334955 Maintainer: cjantz Status: ready -->
+<!-- EN-Revision: 342988 Maintainer: cjantz Status: ready -->
<!-- Reviewed: no -->
<chapter xml:id="gender.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
Modified: phpdoc/de/trunk/reference/gettext/functions/textdomain.xml
===================================================================
--- phpdoc/de/trunk/reference/gettext/functions/textdomain.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/gettext/functions/textdomain.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: sammywg Status: ready -->
-<!-- splitted from ./de/functions/gettext.xml, last change in rev 1.1 -->
+<!-- EN-Revision: 341378 Maintainer: sammywg Status: ready -->
+
<refentry xml:id="function.textdomain" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>textdomain</refname>
@@ -11,7 +11,7 @@
&reftitle.description;
<methodsynopsis>
<type>string</type><methodname>textdomain</methodname>
- <methodparam><type>string</type><parameter>text_domain</parameter></methodparam>
+ <methodparam><type>string</type><parameter>text_domain</parameter><initializer>&null;</initializer></methodparam>
</methodsynopsis>
<para>
Diese Funktion setzt die Domain, in der bei einem
Modified: phpdoc/de/trunk/reference/gmagick/gmagickpixel/getcolor.xml
===================================================================
--- phpdoc/de/trunk/reference/gmagick/gmagickpixel/getcolor.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/gmagick/gmagickpixel/getcolor.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 339635 Maintainer: cmb Status: ready -->
+<!-- EN-Revision: 343899 Maintainer: cmb Status: ready -->
<refentry xml:id="gmagickpixel.getcolor" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -12,8 +12,8 @@
&reftitle.description;
<methodsynopsis>
<modifier>public</modifier> <type>mixed</type><methodname>GmagickPixel::getcolor</methodname>
- <methodparam choice="opt"><type>bool</type><parameter>as_array</parameter><initializer>false</initializer></methodparam>
- <methodparam choice="opt"><type>bool</type><parameter>normalize_array</parameter><initializer>false</initializer></methodparam>
+ <methodparam choice="opt"><type>bool</type><parameter>as_array</parameter><initializer>&false;</initializer></methodparam>
+ <methodparam choice="opt"><type>bool</type><parameter>normalize_array</parameter><initializer>&false;</initializer></methodparam>
</methodsynopsis>
<para>
Gibt die Farbe als <type>String</type> oder <type>Array</type> zurück. Wenn die Farbe einen Transparenz-Kanal hat, wird dieser als der vierte Wert im Array zurück gegeben.
Modified: phpdoc/de/trunk/reference/network/constants.xml
===================================================================
--- phpdoc/de/trunk/reference/network/constants.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/network/constants.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 323628 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 344579 Maintainer: sammywg Status: ready -->
<appendix xml:id="network.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.constants;
@@ -178,6 +178,10 @@
<entry><constant>DNS_A</constant></entry>
<entry>IPv4-Adress-Ressource</entry>
</row>
+ <row xml:id="constant.dns-caa">
+ <entry><constant>DNS_CAA</constant></entry>
+ <entry>Certification Authority Authorization Resource (verfügbar von PHP 7.0.16 und 7.1.2 an)</entry>
+ </row>
<row xml:id="constant.dns-mx">
<entry><constant>DNS_MX</constant></entry>
<entry>Mail-Exchanger-Ressource</entry>
Modified: phpdoc/de/trunk/reference/opcache/functions/opcache-get-status.xml
===================================================================
--- phpdoc/de/trunk/reference/opcache/functions/opcache-get-status.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/opcache/functions/opcache-get-status.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 332285 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 343890 Maintainer: nobody Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="function.opcache-get-status" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -13,7 +13,7 @@
&reftitle.description;
<methodsynopsis>
<type>array</type><methodname>opcache_get_status</methodname>
- <methodparam choice="opt"><type>boolean</type><parameter>get_scripts</parameter><initializer>&true;</initializer></methodparam>
+ <methodparam choice="opt"><type>bool</type><parameter>get_scripts</parameter><initializer>&true;</initializer></methodparam>
</methodsynopsis>
<para>
Diese Funktion liefert Statusinformationen zu der Cache Instanz.
Modified: phpdoc/de/trunk/reference/opcache/functions/opcache-reset.xml
===================================================================
--- phpdoc/de/trunk/reference/opcache/functions/opcache-reset.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/opcache/functions/opcache-reset.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 330685 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 343889 Maintainer: nobody Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="function.opcache-reset" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -12,7 +12,7 @@
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
- <type>boolean</type><methodname>opcache_reset</methodname>
+ <type>bool</type><methodname>opcache_reset</methodname>
<void />
</methodsynopsis>
<para>
Modified: phpdoc/de/trunk/reference/outcontrol/book.xml
===================================================================
--- phpdoc/de/trunk/reference/outcontrol/book.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/outcontrol/book.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 335457 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 341282 Maintainer: hholzgra Status: ready -->
<book xml:id="book.outcontrol" xmlns="http://docbook.org/ns/docbook">
<?phpdoc extension-membership="core" ?>
@@ -19,16 +19,6 @@
geschickt wurden, sondern nur für Daten, die mit <function>echo</function>
gesendet wurden oder für Daten zwischen PHP-Codeblöcken.
</para>
- <note>
- <para>
- Bei Upgrades von PHP 4.1.x (und 4.2.x) auf 4.3.x müssen Sie wegen
- eines Fehlers in früheren Versionen sicherstellen, dass
- <literal>implicit_flush</literal> in Ihrer &php.ini; auf
- <literal>OFF</literal> gesetzt ist, anderenfalls werden
- Ausgaben auch nach Aufruf von <function>ob_start</function>
- noch an den Browser weitergegeben.
- </para>
- </note>
</preface>
&reference.outcontrol.setup;
Modified: phpdoc/de/trunk/reference/outcontrol/examples.xml
===================================================================
--- phpdoc/de/trunk/reference/outcontrol/examples.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/outcontrol/examples.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 333204 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 3 Maintainer: hholzgra Status: ready -->
<appendix xml:id="outcontrol.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.examples;
@@ -35,6 +35,60 @@
gesendet werden, wenn schon Daten ausgegeben wurden.)
</para>
</section>
+
+ <section xml:id="outcontrol.examples.rewrite">
+ <title>Verwendung des URL-Rewriters</title>
+ <para>
+ Von PHP 7.1.0 an verwenden <function>output_add_rewrite_var</function> und
+ <function>output_reset_rewrite_vars</function> einen eigenen Ausgabepuffer.
+ D.h. der <link linkend="ini.session.use-trans-sid">trans sid</link>
+ Ausgabepuffer wird von diesen Funktionen nicht mehr verwendet.
+ </para>
+ <para>
+ <example>
+ <title>URL-Rewriter-Beispiel</title>
+ <programlisting role="php">
+<![CDATA[
+<?php
+// Dieser Code funktioniert mit PHP 7.1.0, 7.0.10, 5.6.25 und höher.
+
+// HTTP_HOST ist der Standard-Zielhost. Wir setzen ihn händisch, damit das Beispiel funktioniert.
+$_SERVER['HTTP_HOST'] = 'php.net';
+
+// Der URL-Rewriter soll nur form und a=href umschreiben.
+// Elemente können durch tag_name=url_attr angegeben werden, z.B. img=src,iframe=src
+// Zwischen diesen Angaben sind keine Leerzeichen erlaubt.
+// Das Form-Element ist besonders, da ihm ein verstecktes Eingabefeld hinzugefügt wird.
+ini_set('url_rewriter.tags','a=href,form=');
+var_dump(ini_get('url_rewriter.tags'));
+
+// Dies wird zu URL und dem Form-Element hinzugefügt
+output_add_rewrite_var('test', 'value');
+?>
+<a href="//php.net/index.php?bug=1234">bug1234</a>
+<form action="https://php.net/?bug=1234&edit=1" action="post">
+ <input type="text" name="title" />
+</form>
+]]>
+ </programlisting>
+ &example.outputs;
+ <screen>
+<![CDATA[
+<a href="//php.net/?bug=1234&test=value">bug1234</a>
+<form action="https://php.net/?bug=1234&edit=1" method="post"><input type="hidden" name="test" value="value" />
+ <input type="text" name="title" />
+</form>
+]]>
+ </screen>
+ </example>
+ </para>
+ <para>
+ Von PHP 7.1.0 haben die URL-Rewriter-Funktionen eigene INI Einstellungen:
+ <link linkend="ini.url-rewriter.tags">url_rewriter.tags</link>
+ und <link linkend="ini.url-rewriter.hosts">url_rewriter.hosts</link>.
+ </para>
+ </section>
+
</appendix>
<!-- Keep this comment at the end of the file
Modified: phpdoc/de/trunk/reference/outcontrol/ini.xml
===================================================================
--- phpdoc/de/trunk/reference/outcontrol/ini.xml 2018-04-11 16:40:05 UTC (rev 344652)
+++ phpdoc/de/trunk/reference/outcontrol/ini.xml 2018-04-11 17:19:55 UTC (rev 344653)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 339963 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 341282 Maintainer: hholzgra Status: ready -->
+
<section xml:id="outcontrol.configuration" xmlns="http://docbook.org/ns/docbook">
&reftitle.runtime;
&extension.runtime;
@@ -72,7 +73,7 @@
diesen Wert auf 'On' setzen. Wenn Sie die Größe des Buffers auf
limitieren wollen, so können Sie die maximale Größe in Bytes an
Stelle von 'On' angeben (z.B. output_buffering=4096).
- Ab PHP 4.3.5 ist dieser Wert für den PHP-CLI-Kommandozeileninterpreter
+ Dieser Wert ist für den PHP-CLI-Kommandozeileninterpreter
grundsätzlich 'Off'.
</para>
</listitem>