svn: /phpdoc/de/trunk/ language/functions.xml reference/array/functions/array-keys.xml reference/bc/functions/bcmod.xml reference/classobj/functions/call-user-method.xml reference/funchand/functions/call-user-func.xml reference/funchand/functions/register-shutdown-function.xml reference/ibase/functions/ibase-execute.xml reference/image/functions/imagecolortransparent.xml reference/image/functions/imagegif.xml reference/image/functions/imagejpeg.xml reference/image/functions/imagepng.xml referenc
[email protected] (Christoph Michael Becker)
| Newsgroups | php.doc.de |
|---|---|
| Message-ID | <[email protected]> |
cmb Wed, 28 Nov 2018 14:17:59 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=346116
Log:
Sync with EN
Changed paths:
U phpdoc/de/trunk/language/functions.xml
U phpdoc/de/trunk/reference/array/functions/array-keys.xml
U phpdoc/de/trunk/reference/bc/functions/bcmod.xml
U phpdoc/de/trunk/reference/classobj/functions/call-user-method.xml
U phpdoc/de/trunk/reference/funchand/functions/call-user-func.xml
U phpdoc/de/trunk/reference/funchand/functions/register-shutdown-function.xml
U phpdoc/de/trunk/reference/ibase/functions/ibase-execute.xml
U phpdoc/de/trunk/reference/image/functions/imagecolortransparent.xml
U phpdoc/de/trunk/reference/image/functions/imagegif.xml
U phpdoc/de/trunk/reference/image/functions/imagejpeg.xml
U phpdoc/de/trunk/reference/image/functions/imagepng.xml
U phpdoc/de/trunk/reference/math/functions/max.xml
U phpdoc/de/trunk/reference/math/functions/min.xml
U phpdoc/de/trunk/reference/misc/functions/pack.xml
U phpdoc/de/trunk/reference/soap/soapserver/setclass.xml
U phpdoc/de/trunk/reference/strings/functions/fprintf.xml
U phpdoc/de/trunk/reference/strings/functions/sprintf.xml
U phpdoc/de/trunk/reference/var/functions/serialize.xml
svn-diffs-346116.txt
(text/x-diff, 26.1 KB)
Modified: phpdoc/de/trunk/language/functions.xml
===================================================================
--- phpdoc/de/trunk/language/functions.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/language/functions.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 345951 Maintainer: cmb Status: ready -->
+<!-- EN-Revision: 346044 Maintainer: cmb Status: ready -->
<!-- Credits: hholzgra, tom, updated to fix build by theseer -->
<chapter xml:id="language.functions" xmlns="http://docbook.org/ns/docbook">
@@ -1041,6 +1041,13 @@
korrekten Typ haben; andernfalls wird ein <classname>TypeError</classname> ausgelöst.
</para>
+ <para>
+ Von PHP 7.1.0 können Rückgabetypen als nullbar ausgezeichnet werden, indem
+ dem Typnamen ein Fragezeichen (<literal>?</literal>) vorangestellt wird.
+ Dies zeigt an, dass die Funktion entweder den angegeben Typ oder &null;
+ zurückliefert.
+ </para>
+
<note>
<para>
Wird eine Elternmethode überschrieben, muss die Rückgabe-Typdeklaration der Kindmethode
@@ -1127,6 +1134,23 @@
]]>
</screen>
</example>
+
+ <example>
+ <title>Nullbare Rückgabe-Typdeklaration (von PHP 7.1.0 an)</title>
+ <programlisting role="php">
+<![CDATA[
+<?php
+function get_item(): ?string {
+ if (isset($_GET['item'])) {
+ return $_GET['item'];
+ } else {
+ return null;
+ }
+}
+?>
+]]>
+ </programlisting>
+ </example>
</sect3>
</sect2>
</sect1>
Modified: phpdoc/de/trunk/reference/array/functions/array-keys.xml
===================================================================
--- phpdoc/de/trunk/reference/array/functions/array-keys.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/array/functions/array-keys.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 345357 Maintainer: wiesemann Status: ready -->
+<!-- EN-Revision: 346086 Maintainer: wiesemann Status: ready -->
<!-- CREDITS: tom -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.array-keys">
<refnamediv>
@@ -13,8 +13,11 @@
<methodsynopsis>
<type>array</type><methodname>array_keys</methodname>
<methodparam><type>array</type><parameter>array</parameter></methodparam>
- <!-- $seach_value has no default value, see <https://bugs.php.net/65904> -->
- <methodparam choice="opt"><type>mixed</type><parameter>search_value</parameter></methodparam>
+ </methodsynopsis>
+ <methodsynopsis>
+ <type>array</type><methodname>array_keys</methodname>
+ <methodparam><type>array</type><parameter>array</parameter></methodparam>
+ <methodparam><type>mixed</type><parameter>search_value</parameter></methodparam>
<methodparam choice="opt"><type>bool</type><parameter>strict</parameter><initializer>&false;</initializer></methodparam>
</methodsynopsis>
<para>
@@ -22,7 +25,7 @@
String) des Arrays <parameter>array</parameter> zurück.
</para>
<para>
- Ist der optionale Parameter <parameter>search_value</parameter>
+ Ist der Parameter <parameter>search_value</parameter>
angegeben, werden nur die Schlüssel für diesen Wert zurückgegeben.
Andernfalls werden alle Schlüssel von <parameter>array</parameter>
zurückgegeben.
Modified: phpdoc/de/trunk/reference/bc/functions/bcmod.xml
===================================================================
--- phpdoc/de/trunk/reference/bc/functions/bcmod.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/bc/functions/bcmod.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 344896 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 346085 Maintainer: sammywg Status: ready -->
<refentry xml:id="function.bcmod" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -14,7 +14,7 @@
<type>string</type><methodname>bcmod</methodname>
<methodparam><type>string</type><parameter>dividend</parameter></methodparam>
<methodparam><type>string</type><parameter>divisor</parameter></methodparam>
- <methodparam choice="opt"><type>int</type><parameter>scale</parameter></methodparam>
+ <methodparam choice="opt"><type>int</type><parameter>scale</parameter><initializer>0</initializer></methodparam>
</methodsynopsis>
<para>
Liefert den Rest der Division von <parameter>dividend</parameter>
Modified: phpdoc/de/trunk/reference/classobj/functions/call-user-method.xml
===================================================================
--- phpdoc/de/trunk/reference/classobj/functions/call-user-method.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/classobj/functions/call-user-method.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 338430 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 346102 Maintainer: hholzgra Status: ready -->
<refentry xml:id="function.call-user-method" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>call_user_method</refname>
@@ -20,7 +20,6 @@
<type>mixed</type><methodname>call_user_method</methodname>
<methodparam><type>string</type><parameter>method_name</parameter></methodparam>
<methodparam><type>object</type><parameter role="reference">obj</parameter></methodparam>
- <methodparam choice="opt"><type>mixed</type><parameter>parameter</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
</methodsynopsis>
&warn.deprecated.function-4-1-0.removed-7-0-0;
@@ -51,7 +50,7 @@
</varlistentry>
<varlistentry>
<term>
- <parameter>parameter ...</parameter>
+ <parameter>...</parameter>
</term>
<listitem>
<para>
Modified: phpdoc/de/trunk/reference/funchand/functions/call-user-func.xml
===================================================================
--- phpdoc/de/trunk/reference/funchand/functions/call-user-func.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/funchand/functions/call-user-func.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 345197 Maintainer: simp Status: ready -->
+<!-- EN-Revision: 346102 Maintainer: simp Status: ready -->
<refentry xml:id="function.call-user-func" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -13,7 +13,6 @@
<methodsynopsis>
<type>mixed</type><methodname>call_user_func</methodname>
<methodparam><type>callable</type><parameter>callback</parameter></methodparam>
- <methodparam choice="opt"><type>mixed</type><parameter>parameter</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
</methodsynopsis>
<para>
@@ -35,7 +34,7 @@
</listitem>
</varlistentry>
<varlistentry>
- <term><parameter>parameter</parameter></term>
+ <term><parameter>...</parameter></term>
<listitem>
<para>
Null oder mehr Parameter, die an die Callback-Funktion
Modified: phpdoc/de/trunk/reference/funchand/functions/register-shutdown-function.xml
===================================================================
--- phpdoc/de/trunk/reference/funchand/functions/register-shutdown-function.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/funchand/functions/register-shutdown-function.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 334605 Maintainer: nikic Status: ready -->
+<!-- EN-Revision: 346102 Maintainer: nikic Status: ready -->
<refentry xml:id="function.register-shutdown-function" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>register_shutdown_function</refname>
@@ -14,7 +14,6 @@
<methodsynopsis>
<type>void</type><methodname>register_shutdown_function</methodname>
<methodparam><type>callable</type><parameter>callback</parameter></methodparam>
- <methodparam choice="opt"><type>mixed</type><parameter>parameter</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
</methodsynopsis>
<para>
@@ -48,7 +47,7 @@
</listitem>
</varlistentry>
<varlistentry>
- <term><parameter>parameter</parameter></term>
+ <term><parameter>...</parameter></term>
<listitem>
<para>
Alle weiteren Argumente, die dieser Funktion übergeben werden, werden
@@ -56,13 +55,6 @@
</para>
</listitem>
</varlistentry>
- <varlistentry>
- <term><parameter>...</parameter></term>
- <listitem>
- <para>
- </para>
- </listitem>
- </varlistentry>
</variablelist>
</para>
</refsect1>
Modified: phpdoc/de/trunk/reference/ibase/functions/ibase-execute.xml
===================================================================
--- phpdoc/de/trunk/reference/ibase/functions/ibase-execute.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/ibase/functions/ibase-execute.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 329711 Maintainer: cmb Status: ready -->
+<!-- EN-Revision: 346102 Maintainer: cmb Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.ibase-execute">
<refnamediv>
@@ -13,7 +13,6 @@
<methodsynopsis>
<type>resource</type><methodname>ibase_execute</methodname>
<methodparam><type>resource</type><parameter>query</parameter></methodparam>
- <methodparam choice="opt"><type>mixed</type><parameter>bind_arg</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
</methodsynopsis>
<para>
@@ -41,13 +40,6 @@
</listitem>
</varlistentry>
<varlistentry>
- <term><parameter>bind_arg</parameter></term>
- <listitem>
- <para>
- </para>
- </listitem>
- </varlistentry>
- <varlistentry>
<term><parameter>...</parameter></term>
<listitem>
<para>
Modified: phpdoc/de/trunk/reference/image/functions/imagecolortransparent.xml
===================================================================
--- phpdoc/de/trunk/reference/image/functions/imagecolortransparent.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/image/functions/imagecolortransparent.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 344594 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 346101 Maintainer: nobody Status: ready -->
<refentry xml:id="function.imagecolortransparent" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -13,10 +13,14 @@
<methodsynopsis>
<type>int</type><methodname>imagecolortransparent</methodname>
<methodparam><type>resource</type><parameter>image</parameter></methodparam>
- <methodparam choice="opt"><type>int</type><parameter>color</parameter></methodparam>
</methodsynopsis>
+ <methodsynopsis>
+ <type>int</type><methodname>imagecolortransparent</methodname>
+ <methodparam><type>resource</type><parameter>image</parameter></methodparam>
+ <methodparam><type>int</type><parameter>color</parameter></methodparam>
+ </methodsynopsis>
<para>
- Setzt die transparente Farbe des angegebenen <parameter>image</parameter>.
+ Liest oder setzt die transparente Farbe des angegebenen <parameter>image</parameter>.
</para>
</refsect1>
Modified: phpdoc/de/trunk/reference/image/functions/imagegif.xml
===================================================================
--- phpdoc/de/trunk/reference/image/functions/imagegif.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/image/functions/imagegif.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 344720 Maintainer: simp Status: ready -->
+<!-- EN-Revision: 346101 Maintainer: simp Status: ready -->
<refentry xml:id="function.imagegif" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -12,7 +12,7 @@
<methodsynopsis>
<type>bool</type><methodname>imagegif</methodname>
<methodparam><type>resource</type><parameter>image</parameter></methodparam>
- <methodparam choice="opt"><type>mixed</type><parameter>to</parameter></methodparam>
+ <methodparam choice="opt"><type>mixed</type><parameter>to</parameter><initializer>&null;</initializer></methodparam>
</methodsynopsis>
<para>
Modified: phpdoc/de/trunk/reference/image/functions/imagejpeg.xml
===================================================================
--- phpdoc/de/trunk/reference/image/functions/imagejpeg.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/image/functions/imagejpeg.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 344720 Maintainer: simp Status: ready -->
+<!-- EN-Revision: 346101 Maintainer: simp Status: ready -->
<refentry xml:id="function.imagejpeg" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -12,8 +12,8 @@
<methodsynopsis>
<type>bool</type><methodname>imagejpeg</methodname>
<methodparam><type>resource</type><parameter>image</parameter></methodparam>
- <methodparam choice="opt"><type>mixed</type><parameter>to</parameter></methodparam>
- <methodparam choice="opt"><type>int</type><parameter>quality</parameter></methodparam>
+ <methodparam choice="opt"><type>mixed</type><parameter>to</parameter><initializer>&null;</initializer></methodparam>
+ <methodparam choice="opt"><type>int</type><parameter>quality</parameter><initializer>-1</initializer></methodparam>
</methodsynopsis>
<para>
<function>imagejpeg</function> erzeugt eine <acronym>JPEG</acronym>-Datei aus dem
@@ -29,10 +29,6 @@
<term><parameter>to</parameter></term>
<listitem>
<para>&gd.image.path;</para>
- <para>
- Um diesen Parameter zu übergehen, um den Parameter
- <parameter>quality</parameter> anzugeben kann &null; verwendet werden.
- </para>
</listitem>
</varlistentry>
<varlistentry>
@@ -41,7 +37,7 @@
<para>
<parameter>quality</parameter> ist optional und es kann ein Wert zwischen
0 (schlechteste Qualität, kleine Datei) und 100 (beste Qualität, größte Datei)
- übergeben werden. Der Standardwert ist der standardmäßige
+ übergeben werden. Der Standardwert (<literal>-1</literal>) verwendet den standardmäßigen
IJG-Qualitätswert (ungefähr 75).
</para>
</listitem>
Modified: phpdoc/de/trunk/reference/image/functions/imagepng.xml
===================================================================
--- phpdoc/de/trunk/reference/image/functions/imagepng.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/image/functions/imagepng.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 344720 Maintainer: simp Status: ready -->
+<!-- EN-Revision: 346101 Maintainer: simp Status: ready -->
<refentry xml:id="function.imagepng" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -12,9 +12,9 @@
<methodsynopsis>
<type>bool</type><methodname>imagepng</methodname>
<methodparam><type>resource</type><parameter>image</parameter></methodparam>
- <methodparam choice="opt"><type>mixed</type><parameter>to</parameter></methodparam>
- <methodparam choice="opt"><type>int</type><parameter>quality</parameter></methodparam>
- <methodparam choice="opt"><type>int</type><parameter>filters</parameter></methodparam>
+ <methodparam choice="opt"><type>mixed</type><parameter>to</parameter><initializer>&null;</initializer></methodparam>
+ <methodparam choice="opt"><type>int</type><parameter>quality</parameter><initializer>-1</initializer></methodparam>
+ <methodparam choice="opt"><type>int</type><parameter>filters</parameter><initializer>-1</initializer></methodparam>
</methodsynopsis>
<para>
Erzeugt eine <acronym>PNG</acronym>-Datei aus dem übergebenen
@@ -44,6 +44,7 @@
<listitem>
<para>
Kompressionsstufe: Von 0 (keine Kompression) bis 9.
+ Die Voreinstellung (<literal>-1</literal>) verwendet die voreingestellte zlib Komprimierung.
Die derzeitige Voreinstellung ist 6.
Weitere Informationen sind dem <link
xmlns:xlink="http://www.w3.org/1999/xlink"
@@ -61,7 +62,13 @@
werden kann. <constant>PNG_NO_FILTER</constant> oder
<constant>PNG_ALL_FILTERS</constant> können verwendet werden,
um entweder alle Filter aus- oder einzuschalten.
+ Der Vorgabewert (<literal>-1</literal>) deaktiviert die Filterung.
</para>
+ <caution>
+ <simpara>
+ Der <parameter>filters</parameter> Parameter wird von der System-libgd ignoriert.
+ </simpara>
+ </caution>
</listitem>
</varlistentry>
</variablelist>
Modified: phpdoc/de/trunk/reference/math/functions/max.xml
===================================================================
--- phpdoc/de/trunk/reference/math/functions/max.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/math/functions/max.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 339882 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 346102 Maintainer: sammywg Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.max">
<refnamediv>
@@ -17,7 +17,6 @@
<methodsynopsis>
<type>mixed</type><methodname>max</methodname>
<methodparam><type>mixed</type><parameter>value1</parameter></methodparam>
- <methodparam><type>mixed</type><parameter>value2</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
</methodsynopsis>
<para>
@@ -66,15 +65,6 @@
</listitem>
</varlistentry>
<varlistentry>
- <term><parameter>value2</parameter></term>
- <listitem>
- <para>
- Ein <link linkend="language.operators.comparison">vergleichbarer</link>
- Wert.
- </para>
- </listitem>
- </varlistentry>
- <varlistentry>
<term><parameter>...</parameter></term>
<listitem>
<para>
Modified: phpdoc/de/trunk/reference/math/functions/min.xml
===================================================================
--- phpdoc/de/trunk/reference/math/functions/min.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/math/functions/min.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 340221 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 346102 Maintainer: sammywg Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.min">
<refnamediv>
<refname>min</refname>
@@ -15,7 +15,6 @@
<methodsynopsis>
<type>mixed</type><methodname>min</methodname>
<methodparam><type>mixed</type><parameter>value1</parameter></methodparam>
- <methodparam><type>mixed</type><parameter>value2</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
</methodsynopsis>
<para>
@@ -63,15 +62,6 @@
</listitem>
</varlistentry>
<varlistentry>
- <term><parameter>value2</parameter></term>
- <listitem>
- <para>
- Ein <link linkend="language.operators.comparison">vergleichbarer</link>
- Wert.
- </para>
- </listitem>
- </varlistentry>
- <varlistentry>
<term><parameter>...</parameter></term>
<listitem>
<para>
Modified: phpdoc/de/trunk/reference/misc/functions/pack.xml
===================================================================
--- phpdoc/de/trunk/reference/misc/functions/pack.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/misc/functions/pack.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 343500 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 346102 Maintainer: hholzgra Status: ready -->
<refentry xml:id="function.pack" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>pack</refname>
@@ -12,7 +12,6 @@
<methodsynopsis>
<type>string</type><methodname>pack</methodname>
<methodparam><type>string</type><parameter>format</parameter></methodparam>
- <methodparam choice="opt"><type>mixed</type><parameter>args</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
</methodsynopsis>
<para>
@@ -226,7 +225,7 @@
</listitem>
</varlistentry>
<varlistentry>
- <term><parameter>args</parameter></term>
+ <term><parameter>...</parameter></term>
<listitem>
<para>
</para>
Modified: phpdoc/de/trunk/reference/soap/soapserver/setclass.xml
===================================================================
--- phpdoc/de/trunk/reference/soap/soapserver/setclass.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/soap/soapserver/setclass.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 314090 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 346102 Maintainer: sammywg Status: ready -->
<refentry xml:id="soapserver.setclass" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>SoapServer->setClass()</refname>
@@ -12,7 +12,6 @@
<methodsynopsis>
<modifier>public</modifier> <type>void</type><methodname>SoapServer::setClass</methodname>
<methodparam><type>string</type><parameter>class_name</parameter></methodparam>
- <methodparam choice="opt"><type>mixed</type><parameter>args</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
</methodsynopsis>
<para>
@@ -38,7 +37,7 @@
</listitem>
</varlistentry>
<varlistentry>
- <term><parameter>args</parameter></term>
+ <term><parameter>...</parameter></term>
<listitem>
<para>
Die optionalen Parameter werden zur Laufzeit dem Standardkonstruktor der
Modified: phpdoc/de/trunk/reference/strings/functions/fprintf.xml
===================================================================
--- phpdoc/de/trunk/reference/strings/functions/fprintf.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/strings/functions/fprintf.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 346102 Maintainer: sammywg Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.fprintf">
<refnamediv>
@@ -14,7 +14,6 @@
<type>int</type><methodname>fprintf</methodname>
<methodparam><type>resource</type><parameter>handle</parameter></methodparam>
<methodparam><type>string</type><parameter>format</parameter></methodparam>
- <methodparam choice="opt"><type>mixed</type><parameter>args</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
</methodsynopsis>
<para>
@@ -43,13 +42,6 @@
</listitem>
</varlistentry>
<varlistentry>
- <term><parameter>args</parameter></term>
- <listitem>
- <para>
- </para>
- </listitem>
- </varlistentry>
- <varlistentry>
<term><parameter>...</parameter></term>
<listitem>
<para>
Modified: phpdoc/de/trunk/reference/strings/functions/sprintf.xml
===================================================================
--- phpdoc/de/trunk/reference/strings/functions/sprintf.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/strings/functions/sprintf.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 343167 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 346102 Maintainer: sammywg Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.sprintf">
<refnamediv>
@@ -13,7 +13,6 @@
<methodsynopsis>
<type>string</type><methodname>sprintf</methodname>
<methodparam><type>string</type><parameter>format</parameter></methodparam>
- <methodparam choice="opt"><type>mixed</type><parameter>args</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
</methodsynopsis>
<para>
@@ -339,13 +338,6 @@
</listitem>
</varlistentry>
<varlistentry>
- <term><parameter>args</parameter></term>
- <listitem>
- <para>
- </para>
- </listitem>
- </varlistentry>
- <varlistentry>
<term><parameter>...</parameter></term>
<listitem>
<para>
Modified: phpdoc/de/trunk/reference/var/functions/serialize.xml
===================================================================
--- phpdoc/de/trunk/reference/var/functions/serialize.xml 2018-11-28 13:30:11 UTC (rev 346115)
+++ phpdoc/de/trunk/reference/var/functions/serialize.xml 2018-11-28 14:17:59 UTC (rev 346116)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 336599 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 346043 Maintainer: sammywg Status: ready -->
<refentry xml:id="function.serialize" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -36,7 +36,7 @@
<listitem>
<para>
Der zu serialisierende Wert. <function>serialize</function> kann mit allen
- Typen umgehen, ausgenommen mit dem <type>resource</type>-Typ. Sie können
+ Typen umgehen, ausgenommen mit dem <type>resource</type>-Typ und einigen<type>object</type>-Typen (siehe Hinweis weiter unten). Sie können
sogar Arrays serialisieren, die Referenzen auf sich selbst enthalten.
Zirkelbezüge innerhalb des Arrays/Objekts, das Sie serialisieren, werden
ebenfalls gespeichert. Alle anderen Referenzen gehen verloren.