svn: /phpdoc/de/trunk/ language/basic-syntax.xml language/generators.xml language/oop5/abstract.xml language/operators.xml language/predefined/interfaces.xml language/types/boolean.xml language/types/float.xml language/types/string.xml reference/exec/functions/shell-exec.xml reference/ldap/functions/ldap-bind.xml reference/ldap/functions/ldap-list.xml reference/session/functions/session-module-name.xml reference/session/functions/session-regenerate-id.xml reference/session/functions/session-star
[email protected] (Christoph Michael Becker)
| Newsgroups | php.doc.de |
|---|---|
| Message-ID | <[email protected]> |
cmb Sun, 27 Oct 2019 11:11:30 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=348225
Log:
Sync with EN
Changed paths:
U phpdoc/de/trunk/language/basic-syntax.xml
U phpdoc/de/trunk/language/generators.xml
U phpdoc/de/trunk/language/oop5/abstract.xml
U phpdoc/de/trunk/language/operators.xml
U phpdoc/de/trunk/language/predefined/interfaces.xml
U phpdoc/de/trunk/language/types/boolean.xml
U phpdoc/de/trunk/language/types/float.xml
U phpdoc/de/trunk/language/types/string.xml
U phpdoc/de/trunk/reference/exec/functions/shell-exec.xml
U phpdoc/de/trunk/reference/ldap/functions/ldap-bind.xml
U phpdoc/de/trunk/reference/ldap/functions/ldap-list.xml
U phpdoc/de/trunk/reference/session/functions/session-module-name.xml
U phpdoc/de/trunk/reference/session/functions/session-regenerate-id.xml
U phpdoc/de/trunk/reference/session/functions/session-start.xml
U phpdoc/de/trunk/reference/session/ini.xml
U phpdoc/de/trunk/reference/shmop/book.xml
U phpdoc/de/trunk/reference/simplexml/simplexmlelement/asXML.xml
U phpdoc/de/trunk/reference/sockets/configure.xml
U phpdoc/de/trunk/reference/sockets/functions/socket-create-pair.xml
U phpdoc/de/trunk/reference/sockets/functions/socket-recvfrom.xml
U phpdoc/de/trunk/reference/sqlite3/sqlite3/open.xml
U phpdoc/de/trunk/reference/strings/functions/str-replace.xml
U phpdoc/de/trunk/reference/var/functions/is-resource.xml
U phpdoc/de/trunk/reference/var/functions/unset.xml
svn-diffs-348225.txt
(text/x-diff, 27.1 KB)
Modified: phpdoc/de/trunk/language/basic-syntax.xml
===================================================================
--- phpdoc/de/trunk/language/basic-syntax.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/language/basic-syntax.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 346150 Maintainer: cmb Status: ready -->
+<!-- EN-Revision: 348031 Maintainer: cmb Status: ready -->
<chapter xml:id="language.basic-syntax" xmlns="http://docbook.org/ns/docbook">
<title>Grundlagen der Syntax</title>
@@ -14,7 +14,13 @@
in allen möglichen unterschiedlichen Dokumenten, da alles außerhalb eines
Paares von öffnenden und schließenden Tags vom PHP Parser ignoriert wird.
</para>
+
<para>
+ PHP kennt den kurzen Ausgabe-Tag <literal><?=</literal>, der eine Kurzform
+ des ausführlicheren Ausgabe-Tags <code><?php echo "String"; ?></code> ist.
+ </para>
+
+ <para>
PHP erlaubt ebenfalls kurze öffnende Tags <literal><?</literal>
(von denen abgeraten wird, da sie nur verfügbar sind, wenn sie durch
die <link linkend="ini.short-open-tag">short_open_tag</link> &php.ini;
Modified: phpdoc/de/trunk/language/generators.xml
===================================================================
--- phpdoc/de/trunk/language/generators.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/language/generators.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 346863 Maintainer: cmb Status: ready -->
+<!-- EN-Revision: 347735 Maintainer: cmb Status: ready -->
<chapter xml:id="language.generators" xmlns="http://docbook.org/ns/docbook">
<title>Generatoren</title>
@@ -52,7 +52,7 @@
<![CDATA[
<?php
function xrange($start, $limit, $step = 1) {
- if ($start < $limit) {
+ if ($start <= $limit) {
if ($step <= 0) {
throw new LogicException('Schrittweite muss positiv sein');
}
@@ -65,7 +65,7 @@
throw new LogicException('Schrittweite muss negativ sein');
}
- for ($i = $start; $i >= $limit; $i -= $step) {
+ for ($i = $start; $i >= $limit; $i += $step) {
yield $i;
}
}
Modified: phpdoc/de/trunk/language/oop5/abstract.xml
===================================================================
--- phpdoc/de/trunk/language/oop5/abstract.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/language/oop5/abstract.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 332727 Maintainer: simp Status: ready -->
+<!-- EN-Revision: 347912 Maintainer: simp Status: ready -->
<!-- Credits: wiesemann -->
<sect1 xml:id="language.oop5.abstract" xmlns="http://docbook.org/ns/docbook">
<title>Klassenabstraktion</title>
@@ -7,7 +7,7 @@
<para>
PHP 5 führt abstrakte Klassen und Methoden ein. Abstrakt definierte
- Klassen dürfen nicht instanziiert werden. Jede Klasse,
+ Klassen können nicht instanziiert werden. Jede Klasse,
die wenigstens eine abstrakte Methode enthält, muss ebenso abstrakt sein.
Abstrakt definierte Methoden deklarieren nur die Signatur der Methode -
sie können nicht die Implementierung definieren.
Modified: phpdoc/de/trunk/language/operators.xml
===================================================================
--- phpdoc/de/trunk/language/operators.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/language/operators.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 347062 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 347901 Maintainer: nobody Status: ready -->
<!-- CREDITS: tzwenny, betz -->
<chapter xml:id="language.operators" xmlns="http://docbook.org/ns/docbook">
@@ -94,11 +94,6 @@
</entry>
</row>
<row>
- <entry>links</entry>
- <entry><literal>[</literal></entry>
- <entry><function>array</function></entry>
- </row>
- <row>
<entry>rechts</entry>
<entry><literal>**</literal></entry>
<entry><link linkend="language.operators.arithmetic">Arithmetik</link></entry>
@@ -234,7 +229,7 @@
<entry>rechts</entry>
<entry><literal>??</literal></entry>
<entry>
- <link linkend="language.operators.comparison">Vergleiche</link>
+ <link linkend="language.operators.comparison.coalesce">NULL-Zusammenfügungsoperator</link>
</entry>
</row>
<row>
Modified: phpdoc/de/trunk/language/predefined/interfaces.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/interfaces.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/language/predefined/interfaces.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 337170 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347473 Maintainer: sammywg Status: ready -->
<part xml:id="reserved.interfaces" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Vordefinierte Interfaces und Klassen</title>
@@ -20,6 +20,7 @@
&language.predefined.serializable;
&language.predefined.closure;
&language.predefined.generator;
+ &language.predefined.weakreference;
</part>
Modified: phpdoc/de/trunk/language/types/boolean.xml
===================================================================
--- phpdoc/de/trunk/language/types/boolean.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/language/types/boolean.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 341793 Maintainer: hholzgra Status: ready -->
+<!-- EN-Revision: 347033 Maintainer: hholzgra Status: ready -->
<sect1 xml:id="language.types.boolean">
<title>Booleans</title>
@@ -87,12 +87,12 @@
</listitem>
<listitem>
<simpara>
- <link linkend="language.types.integer">integer</link> 0 (zero)
+ <link linkend="language.types.integer">integer</link> 0 und -0 (zero)
</simpara>
</listitem>
<listitem>
<simpara>
- <link linkend="language.types.float">float</link> 0.0 (zero)
+ <link linkend="language.types.float">float</link> 0.0 und -0.0 (zero)
</simpara>
</listitem>
<listitem>
Modified: phpdoc/de/trunk/language/types/float.xml
===================================================================
--- phpdoc/de/trunk/language/types/float.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/language/types/float.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 345104 Maintainer: simp Status: ready -->
+<!-- EN-Revision: 348072 Maintainer: simp Status: ready -->
<!-- Reviewed: no -->
<sect1 xml:id="language.types.float" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -32,7 +32,7 @@
<![CDATA[
LNUM [0-9]+
DNUM ([0-9]*[\.]{LNUM}) | ({LNUM}[\.][0-9]*)
-EXPONENT_DNUM [+-]?(({LNUM} | {DNUM}) [eE][+-]? {LNUM})
+EXPONENT_DNUM (({LNUM} | {DNUM}) [eE][+-]? {LNUM})
]]>
</programlisting>
</informalexample>
Modified: phpdoc/de/trunk/language/types/string.xml
===================================================================
--- phpdoc/de/trunk/language/types/string.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/language/types/string.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 346852 Maintainer: nobody Status: working -->
+<!-- EN-Revision: 347511 Maintainer: nobody Status: working -->
<sect1 xml:id="language.types.string">
<title>Strings</title>
@@ -1069,9 +1069,7 @@
<para>
Most PHP values can also be converted to <type>string</type>s for permanent
storage. This method is called serialization, and is performed by the
- <function>serialize</function> function. If the PHP engine was built with
- <link linkend="ref.wddx">WDDX</link> support, PHP values can also be
- serialized as well-formed XML text.
+ <function>serialize</function> function.
</para>
</sect2>
Modified: phpdoc/de/trunk/reference/exec/functions/shell-exec.xml
===================================================================
--- phpdoc/de/trunk/reference/exec/functions/shell-exec.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/exec/functions/shell-exec.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 331914 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 348185 Maintainer: sammywg Status: ready -->
<refentry xml:id='function.shell-exec' xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>shell_exec</refname>
@@ -18,7 +18,14 @@
Diese Funktion ist identisch zum <link
linkend="language.operators.execution">Backtick-Operator</link>.
</para>
- </refsect1>
+ <note>
+ <para>
+ Unter Windows wird die unterliegende Pipe im Textmodus geöffnet, was bewirken kann,
+ dass die Funktion für binäre Ausgaben fehlschlägt. Es ist zu erwägen, statt dessen
+ <function>popen</function> für solche Fälle zu verwenden.
+ </para>
+ </note>
+ </refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
Modified: phpdoc/de/trunk/reference/ldap/functions/ldap-bind.xml
===================================================================
--- phpdoc/de/trunk/reference/ldap/functions/ldap-bind.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/ldap/functions/ldap-bind.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 346167 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 347900 Maintainer: nobody Status: ready -->
<refentry xml:id="function.ldap-bind" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -15,6 +15,7 @@
<methodparam><type>resource</type><parameter>link_identifier</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>bind_rdn</parameter><initializer>&null;</initializer></methodparam>
<methodparam choice="opt"><type>string</type><parameter>bind_password</parameter><initializer>&null;</initializer></methodparam>
+ <methodparam choice="opt"><type>array</type><parameter>serverctrls</parameter><initializer>array()</initializer></methodparam>
</methodsynopsis>
<para>
Bindung für ein LDAP Verzeichnis mit angegebenem RDN und Kennwort.
@@ -48,6 +49,15 @@
</para>
</listitem>
</varlistentry>
+ <varlistentry>
+ <term><parameter>serverctrls</parameter></term>
+ <listitem>
+ <para>
+ Ein Array von <link linkend="ldap.controls">LDAP Controls</link>,
+ die mit der Anfrage mitgesendet werden.
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
</para>
<para>
@@ -80,7 +90,7 @@
$ldappass = 'password'; // entsprechendes password
// verbinden zum ldap server
-$ldapconn = ldap_connect("ldap.example.com")
+$ldapconn = ldap_connect("ldap://ldap.example.com")
or die("Keine Verbindung zum LDAP server möglich.");
if ($ldapconn) {
@@ -110,7 +120,7 @@
//verwenden von anonymen ldap bind
// verbinden zum ldap server
-$ldapconn = ldap_connect("ldap.example.com")
+$ldapconn = ldap_connect("ldap://ldap.example.com")
or die("Keine Verbindung zum LDAP server möglich.");
if ($ldapconn) {
Modified: phpdoc/de/trunk/reference/ldap/functions/ldap-list.xml
===================================================================
--- phpdoc/de/trunk/reference/ldap/functions/ldap-list.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/ldap/functions/ldap-list.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 346169 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 347307 Maintainer: nobody Status: ready -->
<refentry xml:id="function.ldap-list" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -200,13 +200,6 @@
Unterstützung für <parameter>serverctrls</parameter> hinzugefügt.
</entry>
</row>
- <row>
- <entry>4.0.5</entry>
- <entry>
- Unterstützung für parallele Suchen wurde hinzugefügt. Siehe
- <function>ldap_search</function> für Details.
- </entry>
- </row>
</tbody>
</tgroup>
</informaltable>
Modified: phpdoc/de/trunk/reference/session/functions/session-module-name.xml
===================================================================
--- phpdoc/de/trunk/reference/session/functions/session-module-name.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/session/functions/session-module-name.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 346542 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 347994 Maintainer: samesch Status: ready -->
<refentry xml:id="function.session-module-name" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>session_module_name</refname>
@@ -31,7 +31,7 @@
Wenn <parameter>module</parameter> angegeben wird, wird stattdessen
dieses Modul verwendet.
Die Übergabe von <literal>"user"</literal> an diesen Parameter ist verboten.
- Statt dessen sollte <function>set_set_save_handler</function> aufgerufen
+ Statt dessen sollte <function>session_set_save_handler</function> aufgerufen
werden, um einen benutzerdefinierten Session-Handler festzulegen.
</para>
</listitem>
Modified: phpdoc/de/trunk/reference/session/functions/session-regenerate-id.xml
===================================================================
--- phpdoc/de/trunk/reference/session/functions/session-regenerate-id.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/session/functions/session-regenerate-id.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 343899 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 347099 Maintainer: samesch Status: ready -->
<refentry xml:id="function.session-regenerate-id" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -96,14 +96,6 @@
Den Parameter <parameter>delete_old_session</parameter> hinzugefügt
</entry>
</row>
- <row>
- <entry>4.3.3</entry>
- <entry>
- Falls Session-Cookies aktiviert sind, wird durch die Verwendung von
- <function>session_regenerate_id</function> nun auch ein neues
- Session-Cookie mit der neuen Session-ID abgegeben.
- </entry>
- </row>
</tbody>
</tgroup>
</informaltable>
Modified: phpdoc/de/trunk/reference/session/functions/session-start.xml
===================================================================
--- phpdoc/de/trunk/reference/session/functions/session-start.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/session/functions/session-start.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 346848 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 347043 Maintainer: samesch Status: ready -->
<refentry xml:id="function.session-start" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -114,16 +114,6 @@
Vorher wurde &true; zurückgegeben.
</entry>
</row>
- <row>
- <entry>4.3.3</entry>
- <entry>
- Ab PHP 4.3.3 resultiert der Aufruf von
- <function>session_start</function> nachdem die Session vorher
- gestartet wurde in einem Fehler der Stufe
- <constant>E_NOTICE</constant>. Der zweite Start der Session wird in
- diesem Fall einfach ignoriert.
- </entry>
- </row>
</tbody>
</tgroup>
</informaltable>
Modified: phpdoc/de/trunk/reference/session/ini.xml
===================================================================
--- phpdoc/de/trunk/reference/session/ini.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/session/ini.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 346941 Maintainer: samesch Status: ready -->
+<!-- EN-Revision: 347259 Maintainer: samesch Status: ready -->
<section xml:id="session.configuration" xmlns="http://docbook.org/ns/docbook">
&reftitle.runtime;
@@ -875,21 +875,23 @@
angegeben werden. Längere Session-IDs sind schwerer zu erraten. Wenigstens
32 Zeichen werden empfohlen.
</simpara>
- <para>
- Hinweis zur Kompatibiliät: Verwenden Sie 32 für
- <literal>session.hash_func</literal>=0 (MD5) und
- <literal>session.hash_bits_per_character</literal>=4,
- <literal>session.hash_func</literal>=1 (SHA1) und
- <literal>session.hash_bits_per_character</literal>=6. Verwenden Sie 26 für
- <literal>session.hash_func</literal>=0 (MD5) und
- <literal>session.hash_bits_per_character</literal>=5. Verwenden Sie 22 für
- <literal>session.hash_func</literal>=0 (MD5) und
- <literal>session.hash_bits_per_character</literal>=6. Die INI Werte müssen
- so konfiguriert werden, dass sie wenigstens 128 bits in der Session-ID
- haben. Vergessen Sie nicht,
- <literal>session.sid_bits_per_character</literal> den entsprechenden Wert
- zuzuweisen; andernfalls erhalten Sie schwächere Session-IDs.
- </para>
+ <tip>
+ <para>
+ Hinweis zur Kompatibiliät: Verwenden Sie 32 anstatt
+ <literal>session.hash_function</literal>=0 (MD5) und
+ <literal>session.hash_bits_per_character</literal>=4,
+ <literal>session.hash_function</literal>=1 (SHA1) und
+ <literal>session.hash_bits_per_character</literal>=6. Verwenden Sie 26 anstatt
+ <literal>session.hash_function</literal>=0 (MD5) und
+ <literal>session.hash_bits_per_character</literal>=5. Verwenden Sie 22 anstatt
+ <literal>session.hash_function</literal>=0 (MD5) und
+ <literal>session.hash_bits_per_character</literal>=6. Die INI Werte müssen
+ so konfiguriert werden, dass sie wenigstens 128 bits in der Session-ID
+ haben. Vergessen Sie nicht,
+ <literal>session.sid_bits_per_character</literal> den entsprechenden Wert
+ zuzuweisen; andernfalls erhalten Sie schwächere Session-IDs.
+ </para>
+ </tip>
<note>
<simpara>
Diese Einstellung wurde in PHP 7.1.0 eingeführt.
Modified: phpdoc/de/trunk/reference/shmop/book.xml
===================================================================
--- phpdoc/de/trunk/reference/shmop/book.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/shmop/book.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 340357 Maintainer: conni Status: ready -->
+<!-- EN-Revision: 347589 Maintainer: conni Status: ready -->
<book xml:id="book.shmop" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<?phpdoc extension-membership="bundled" ?>
@@ -14,12 +14,6 @@
mit denen man mit PHP UNIX shared-memory-Segmente beschreiben,
auslesen und löschen kann.
</para>
- <note>
- <simpara>
- Ältere Windows-Versionen vor Windows 2000 unterstützen keinen
- gemeinsamen Speicher.
- </simpara>
- </note>
</preface>
<!-- }}} -->
Modified: phpdoc/de/trunk/reference/simplexml/simplexmlelement/asXML.xml
===================================================================
--- phpdoc/de/trunk/reference/simplexml/simplexmlelement/asXML.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/simplexml/simplexmlelement/asXML.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 332131 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347573 Maintainer: sammywg Status: ready -->
<refentry xml:id="simplexmlelement.asxml" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -106,7 +106,7 @@
/* Suche nach <a><b><c> */
$result = $xml->xpath('/a/b/c');
-while(list( , $node) = each($result)) {
+foreach ($result as $node) {
echo $node->asXML();
}
?>
Modified: phpdoc/de/trunk/reference/sockets/configure.xml
===================================================================
--- phpdoc/de/trunk/reference/sockets/configure.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/sockets/configure.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: conni Status: ready -->
+<!-- EN-Revision: 347589 Maintainer: conni Status: ready -->
<section xml:id="sockets.installation" xmlns="http://docbook.org/ns/docbook">
&reftitle.install;
@@ -10,7 +10,6 @@
dazu die Option <option role="configure">--enable-sockets</option> des
<command>configure</command>-Kommandos.
</para>
- &ipv6.php5;
</section>
<!-- Keep this comment at the end of the file
Modified: phpdoc/de/trunk/reference/sockets/functions/socket-create-pair.xml
===================================================================
--- phpdoc/de/trunk/reference/sockets/functions/socket-create-pair.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/sockets/functions/socket-create-pair.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: conni Status: ready -->
+<!-- EN-Revision: 347589 Maintainer: conni Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.socket-create-pair">
<refnamediv>
<refname>socket_create_pair</refname>
@@ -102,15 +102,9 @@
<row>
<entry>5.3.0</entry>
<entry>
- Diese Funktion wurde für Windows-Plattformen wieder reaktiviert.
+ Diese Funktion ist nun für Windows-Plattformen verfügbar.
</entry>
</row>
- <row>
- <entry>4.3.0</entry>
- <entry>
- Diese Funktion wurde aufgrund eines Fehlers für Windows deaktiviert.
- </entry>
- </row>
</tbody>
</tgroup>
</informaltable>
Modified: phpdoc/de/trunk/reference/sockets/functions/socket-recvfrom.xml
===================================================================
--- phpdoc/de/trunk/reference/sockets/functions/socket-recvfrom.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/sockets/functions/socket-recvfrom.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: conni Status: ready -->
+<!-- EN-Revision: 347589 Maintainer: conni Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.socket-recvfrom">
<refnamediv>
<refname>socket_recvfrom</refname>
@@ -39,6 +39,7 @@
Host, falls es sich um einen nicht verbundenen <constant>AF_INET</constant>
oder <constant>AF_INET6</constant> Socket handelt.
</para>
+ ¬e.bin-safe;
</refsect1>
<refsect1 role="parameters">
@@ -195,30 +196,6 @@
</para>
</refsect1>
- <refsect1 role="changelog">
- &reftitle.changelog;
- <para>
- <informaltable>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>&Version;</entry>
- <entry>&Description;</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>4.3.0</entry>
- <entry>
- <function>socket_recvfrom</function> ist ab jetzt binary-safe.
- </entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </para>
- </refsect1>
-
<refsect1 role="seealso">
&reftitle.seealso;
<para>
Modified: phpdoc/de/trunk/reference/sqlite3/sqlite3/open.xml
===================================================================
--- phpdoc/de/trunk/reference/sqlite3/sqlite3/open.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/sqlite3/sqlite3/open.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 343899 Maintainer: lapistano Status: ready -->
+<!-- EN-Revision: 347846 Maintainer: lapistano Status: ready -->
<refentry xml:id="sqlite3.open" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
Modified: phpdoc/de/trunk/reference/strings/functions/str-replace.xml
===================================================================
--- phpdoc/de/trunk/reference/strings/functions/str-replace.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/strings/functions/str-replace.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 334592 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 348167 Maintainer: sammywg Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.str-replace">
<refnamediv>
<refname>str_replace</refname>
@@ -24,7 +24,7 @@
</para>
<para>
Wenn Sie keine ausgefallenen Ersetzungsregeln (wie Reguläre Ausdrücke)
- benötigen, sollten Sie immer diese Funktion anstelle von
+ benötigen, sollten Sie diese Funktion anstelle von
<function>preg_replace</function>
verwenden.
</para>
Modified: phpdoc/de/trunk/reference/var/functions/is-resource.xml
===================================================================
--- phpdoc/de/trunk/reference/var/functions/is-resource.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/var/functions/is-resource.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 336644 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 348211 Maintainer: sammywg Status: ready -->
<!-- splitted from ./de/functions/var.xml, last change in rev 1.2 -->
<refentry xml:id="function.is-resource" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -17,7 +17,7 @@
<methodparam><type>mixed</type><parameter>var</parameter></methodparam>
</methodsynopsis>
<para>
- Prüft, ob die gegebene Variable eine Ressource ist.
+ Prüft, ob die gegebene Variable eine <type>resource</type> ist.
</para>
</refsect1>
Modified: phpdoc/de/trunk/reference/var/functions/unset.xml
===================================================================
--- phpdoc/de/trunk/reference/var/functions/unset.xml 2019-10-27 10:25:46 UTC (rev 348224)
+++ phpdoc/de/trunk/reference/var/functions/unset.xml 2019-10-27 11:11:30 UTC (rev 348225)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 345151 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347577 Maintainer: sammywg Status: ready -->
<refentry xml:id="function.unset" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -245,7 +245,7 @@
</note>
<note>
<para>
- Es ist ab PHP 5 nicht mehr möglich, <literal>$this</literal> innerhalb
+ Es ist nicht möglich, <literal>$this</literal> innerhalb
einer Objektmethode zu löschen.
</para>
</note>