svn: /phpdoc/de/trunk/language/ control-structures/declare.xml control-structures/include-once.xml oop5/basic.xml predefined/variables/cookie.xml predefined/variables/env.xml predefined/variables/files.xml predefined/variables/get.xml predefined/variables/phperrormsg.xml predefined/variables/post.xml predefined/variables/request.xml predefined/variables/server.xml predefined/variables/session.xml predefined/variables/superglobals.xml
[email protected] (Christoph Michael Becker)
| Newsgroups | php.doc.de |
|---|---|
| Message-ID | <[email protected]> |
cmb Mon, 22 Apr 2019 14:16:36 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=347311
Log:
Sync with EN
Changed paths:
U phpdoc/de/trunk/language/control-structures/declare.xml
U phpdoc/de/trunk/language/control-structures/include-once.xml
U phpdoc/de/trunk/language/oop5/basic.xml
U phpdoc/de/trunk/language/predefined/variables/cookie.xml
U phpdoc/de/trunk/language/predefined/variables/env.xml
U phpdoc/de/trunk/language/predefined/variables/files.xml
U phpdoc/de/trunk/language/predefined/variables/get.xml
U phpdoc/de/trunk/language/predefined/variables/phperrormsg.xml
U phpdoc/de/trunk/language/predefined/variables/post.xml
U phpdoc/de/trunk/language/predefined/variables/request.xml
U phpdoc/de/trunk/language/predefined/variables/server.xml
U phpdoc/de/trunk/language/predefined/variables/session.xml
U phpdoc/de/trunk/language/predefined/variables/superglobals.xml
svn-diffs-347311.txt
(text/x-diff, 17.1 KB)
Modified: phpdoc/de/trunk/language/control-structures/declare.xml
===================================================================
--- phpdoc/de/trunk/language/control-structures/declare.xml 2019-04-22 13:35:53 UTC (rev 347310)
+++ phpdoc/de/trunk/language/control-structures/declare.xml 2019-04-22 14:16:36 UTC (rev 347311)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 340235 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347260 Maintainer: sammywg Status: ready -->
<sect1 xml:id="control-structures.declare" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title><literal>declare</literal></title>
@@ -43,13 +43,20 @@
</thead>
<tbody>
<row>
- <entry>5.3.0</entry>
- <entry>Die <literal>encoding</literal>-Direktive hinzugefügt</entry>
+ <entry>7.0.0</entry>
+ <entry>Die <literal>strict_types</literal>-Direktive hinzugefügt</entry>
</row>
<row>
<entry>7.0.0</entry>
- <entry>Die <literal>strict_types</literal>-Direktive hinzugefügt</entry>
+ <entry>
+ Die <literal>ticks</literal>-Direktive wirkt sich nicht mehr versehentlich
+ auf andere Kompilationseinheiten aus.
+ </entry>
</row>
+ <row>
+ <entry>5.3.0</entry>
+ <entry>Die <literal>encoding</literal>-Direktive hinzugefügt</entry>
+ </row>
</tbody>
</tgroup>
</informaltable>
Modified: phpdoc/de/trunk/language/control-structures/include-once.xml
===================================================================
--- phpdoc/de/trunk/language/control-structures/include-once.xml 2019-04-22 13:35:53 UTC (rev 347310)
+++ phpdoc/de/trunk/language/control-structures/include-once.xml 2019-04-22 14:16:36 UTC (rev 347311)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 337130 Maintainer: raphaelm Status: ready -->
+<!-- EN-Revision: 347043 Maintainer: raphaelm Status: ready -->
<sect1 xml:id="function.include-once" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>include_once</title>
@@ -23,33 +23,6 @@
Für die Funktionsweise der Funktion, siehe die Dokumentation zu
<function>include</function>.
</para>
- <para>
- <note>
- <para>
- Mit PHP 4 wird auf Betriebssystemen, die bei Dateinamen nicht zwischen
- Groß- und Kleinschreibung unterscheiden (wie Windows), bei
- <literal>_once</literal> dennoch zwischen Groß- und Kleinschreibung
- unterschieden, wie das folgende Beispiel zeigt:
- <example>
- <title><literal>include_once</literal> mit einem case-insensitive Betriebssystem und PHP 4</title>
- <programlisting role="php">
-<![CDATA[
-<?php
-include_once "a.php"; // a.php wird eingebunden.
-include_once "A.php"; // a.php wird nochmal eingebunden! (Nur in PHP 4)
-?>
-]]>
- </programlisting>
- </example>
- </para>
- <para>
- Dieses Verhalten hat sich in PHP 5 geändert, so dass zum Beispiel bei
- Windows der Pfad zuerst normalisiert wird, sodass
- <filename>C:\PROGRA~1\A.php</filename> und <filename>C:\Program Files\a.php</filename>
- als das selbe erkannt und nur einmal eingebunden werden.
- </para>
- </note>
- </para>
</sect1>
<!-- Keep this comment at the end of the file
Modified: phpdoc/de/trunk/language/oop5/basic.xml
===================================================================
--- phpdoc/de/trunk/language/oop5/basic.xml 2019-04-22 13:35:53 UTC (rev 347310)
+++ phpdoc/de/trunk/language/oop5/basic.xml 2019-04-22 14:16:36 UTC (rev 347311)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 346784 Maintainer: wiesemann Status: ready -->
+<!-- EN-Revision: 347269 Maintainer: wiesemann Status: ready -->
<sect1 xml:id="language.oop5.basic" xmlns="http://docbook.org/ns/docbook">
<title>Die Grundlagen</title>
@@ -19,7 +19,7 @@
Klassenname beginnt mit einem Buchstaben oder einem Unterstrich, gefolgt
von einer beliebigen Anzahl von Buchstaben, Ziffern oder Unterstrichen;
als regulärer Ausdruck formuliert:
- <literal>^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$</literal>.
+ <code>^[a-zA-Z_\x80-\xff][a-zA-Z0-9_\x80-\xff]*$</code>.
</para>
<para>
Eine Klasse darf aus ihren eigenen
Modified: phpdoc/de/trunk/language/predefined/variables/cookie.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/variables/cookie.xml 2019-04-22 13:35:53 UTC (rev 347310)
+++ phpdoc/de/trunk/language/predefined/variables/cookie.xml 2019-04-22 14:16:36 UTC (rev 347311)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 312956 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347043 Maintainer: sammywg Status: ready -->
<phpdoc:varentry xmlns:phpdoc="http://php.net/ns/phpdoc" xml:id="reserved.variables.cookies" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -28,31 +28,6 @@
</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.1.0</entry>
- <entry>
- Einführung von <varname>$_COOKIE</varname> als Ablösung des bis dahin
- existierenden <varname>$HTTP_COOKIE_VARS</varname>.
- </entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </para>
- </refsect1>
-
<refsect1 role="examples">
&reftitle.examples;
<para>
Modified: phpdoc/de/trunk/language/predefined/variables/env.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/variables/env.xml 2019-04-22 13:35:53 UTC (rev 347310)
+++ phpdoc/de/trunk/language/predefined/variables/env.xml 2019-04-22 14:16:36 UTC (rev 347311)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 312956 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347043 Maintainer: sammywg Status: ready -->
<phpdoc:varentry xmlns:phpdoc="http://php.net/ns/phpdoc" xml:id="reserved.variables.environment" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -43,31 +43,6 @@
</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.1.0</entry>
- <entry>
- Einführung von <varname>$_ENV</varname> als Ablösung des bis dahin
- existierenden <varname>$HTTP_ENV_VARS</varname>.
- </entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </para>
- </refsect1>
-
<refsect1 role="examples">
&reftitle.examples;
<para>
Modified: phpdoc/de/trunk/language/predefined/variables/files.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/variables/files.xml 2019-04-22 13:35:53 UTC (rev 347310)
+++ phpdoc/de/trunk/language/predefined/variables/files.xml 2019-04-22 14:16:36 UTC (rev 347311)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 339495 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347043 Maintainer: sammywg Status: ready -->
<phpdoc:varentry xmlns:phpdoc="http://php.net/ns/phpdoc" xml:id="reserved.variables.files" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -30,32 +30,6 @@
</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.1.0</entry>
- <entry>
- Einführung von <varname>$_FILES</varname> als Ablösung des bis dahin
- existierenden <varname>$HTTP_FILES_VARS</varname>.
- </entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </para>
- </refsect1>
-
<refsect1 role="notes">
&reftitle.notes;
¬e.is-superglobal;
Modified: phpdoc/de/trunk/language/predefined/variables/get.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/variables/get.xml 2019-04-22 13:35:53 UTC (rev 347310)
+++ phpdoc/de/trunk/language/predefined/variables/get.xml 2019-04-22 14:16:36 UTC (rev 347311)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 345582 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347043 Maintainer: sammywg Status: ready -->
<phpdoc:varentry xmlns:phpdoc="http://php.net/ns/phpdoc" xml:id="reserved.variables.get" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -27,31 +27,6 @@
</simpara>
</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.1.0</entry>
- <entry>
- Einführung von <varname>$_GET</varname> als Ablösung des bis dahin
- existierenden <varname>$HTTP_GET_VARS</varname>.
- </entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </para>
- </refsect1>
-
<refsect1 role="examples">
&reftitle.examples;
<para>
Modified: phpdoc/de/trunk/language/predefined/variables/phperrormsg.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/variables/phperrormsg.xml 2019-04-22 13:35:53 UTC (rev 347310)
+++ phpdoc/de/trunk/language/predefined/variables/phperrormsg.xml 2019-04-22 14:16:36 UTC (rev 347311)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 342126 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347009 Maintainer: sammywg Status: ready -->
<phpdoc:varentry xmlns:phpdoc="http://php.net/ns/phpdoc" xml:id="reserved.variables.phperrormsg" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -10,6 +10,9 @@
<refsynopsisdiv>
&warn.deprecated.feature-7-2-0;
+ <simpara>
+ Statt dessen sollte <function>error_get_last</function> verwendet werden.
+ </simpara>
</refsynopsisdiv>
<refsect1 role="description">
@@ -54,6 +57,16 @@
</para>
</refsect1>
+
+ <refsect1 role="seealso">
+ &reftitle.seealso;
+ <para>
+ <simplelist>
+ <member><function>error_get_last</function></member>
+ </simplelist>
+ </para>
+ </refsect1>
+
</phpdoc:varentry>
Modified: phpdoc/de/trunk/language/predefined/variables/post.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/variables/post.xml 2019-04-22 13:35:53 UTC (rev 347310)
+++ phpdoc/de/trunk/language/predefined/variables/post.xml 2019-04-22 14:16:36 UTC (rev 347311)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 336516 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347043 Maintainer: sammywg Status: ready -->
<phpdoc:varentry xmlns:phpdoc="http://php.net/ns/phpdoc" xml:id="reserved.variables.post" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -30,32 +30,6 @@
</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.1.0</entry>
- <entry>
- Einführung von <varname>$_POST</varname> als Ablösung des bis dahin
- existierenden <varname>$HTTP_POST_VARS</varname>.
- </entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </para>
- </refsect1>
-
<refsect1 role="examples">
&reftitle.examples;
<para>
Modified: phpdoc/de/trunk/language/predefined/variables/request.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/variables/request.xml 2019-04-22 13:35:53 UTC (rev 347310)
+++ phpdoc/de/trunk/language/predefined/variables/request.xml 2019-04-22 14:16:36 UTC (rev 347311)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 312956 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347043 Maintainer: sammywg Status: ready -->
<phpdoc:varentry xmlns:phpdoc="http://php.net/ns/phpdoc" xml:id="reserved.variables.request" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -38,19 +38,6 @@
aus.
</entry>
</row>
- <row>
- <entry>4.3.0</entry>
- <entry>
- <varname>$_FILES</varname>-Informationen aus
- <varname>$_REQUEST</varname> entfernt.
- </entry>
- </row>
- <row>
- <entry>4.1.0</entry>
- <entry>
- <varname>$_REQUEST</varname> eingeführt.
- </entry>
- </row>
</tbody>
</tgroup>
</informaltable>
Modified: phpdoc/de/trunk/language/predefined/variables/server.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/variables/server.xml 2019-04-22 13:35:53 UTC (rev 347310)
+++ phpdoc/de/trunk/language/predefined/variables/server.xml 2019-04-22 14:16:36 UTC (rev 347311)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 345614 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347079 Maintainer: sammywg Status: ready -->
<phpdoc:varentry xmlns:phpdoc="http://php.net/ns/phpdoc" xml:id="reserved.variables.server" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -580,13 +580,6 @@
missbilligt.
</entry>
</row>
- <row>
- <entry>4.1.0</entry>
- <entry>
- Einführung von <varname>$_SERVER</varname> als Ablösung der bis dahin
- existierenden <varname>$HTTP_SERVER_VARS</varname>.
- </entry>
- </row>
</tbody>
</tgroup>
</informaltable>
Modified: phpdoc/de/trunk/language/predefined/variables/session.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/variables/session.xml 2019-04-22 13:35:53 UTC (rev 347310)
+++ phpdoc/de/trunk/language/predefined/variables/session.xml 2019-04-22 14:16:36 UTC (rev 347311)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 312956 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347043 Maintainer: sammywg Status: ready -->
<phpdoc:varentry xmlns:phpdoc="http://php.net/ns/phpdoc" xml:id="reserved.variables.session" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -28,31 +28,6 @@
</simpara>
</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.1.0</entry>
- <entry>
- Einführung von <varname>$_SESSION</varname> als Ablösung der bis dahin
- existierenden <varname>$HTTP_SESSION_VARS</varname>.
- </entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </para>
- </refsect1>
-
<refsect1 role="notes">
&reftitle.notes;
¬e.is-superglobal;
Modified: phpdoc/de/trunk/language/predefined/variables/superglobals.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/variables/superglobals.xml 2019-04-22 13:35:53 UTC (rev 347310)
+++ phpdoc/de/trunk/language/predefined/variables/superglobals.xml 2019-04-22 14:16:36 UTC (rev 347311)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 288721 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 347043 Maintainer: sammywg Status: ready -->
<phpdoc:varentry xmlns:phpdoc="http://php.net/ns/phpdoc" xml:id="language.variables.superglobals" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" role="noversion">
<refnamediv>
@@ -33,30 +33,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.1.0</entry>
- <entry>
- Superglobals wurden in PHP eingeführt.
- </entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable>
- </para>
- </refsect1>
-
<refsect1 role="notes">
&reftitle.notes;
<note>