svn: /phpdoc/de/trunk/ language/types/string.xml reference/filesystem/constants.xml reference/math/functions/mt-rand.xml reference/math/functions/mt-srand.xml reference/strings/functions/echo.xml reference/strings/functions/money-format.xml

[email protected] (Christoph Michael Becker)
Newsgroups php.doc.de
Message-ID <[email protected]>
cmb                                      Thu, 21 Feb 2019 09:20:31 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=346867

Log:
Sync with EN

Patches provided by Florian Berberich.

Changed paths:
    U   phpdoc/de/trunk/language/types/string.xml
    U   phpdoc/de/trunk/reference/filesystem/constants.xml
    U   phpdoc/de/trunk/reference/math/functions/mt-rand.xml
    U   phpdoc/de/trunk/reference/math/functions/mt-srand.xml
    U   phpdoc/de/trunk/reference/strings/functions/echo.xml
    U   phpdoc/de/trunk/reference/strings/functions/money-format.xml

Modified: phpdoc/de/trunk/language/types/string.xml
===================================================================
--- phpdoc/de/trunk/language/types/string.xml	2019-02-21 08:58:10 UTC (rev 346866)
+++ phpdoc/de/trunk/language/types/string.xml	2019-02-21 09:20:31 UTC (rev 346867)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 346613 Maintainer: nobody Status: working -->
+<!-- EN-Revision: 346852 Maintainer: nobody Status: working -->

 <sect1 xml:id="language.types.string">
  <title>Strings</title>
@@ -464,6 +464,7 @@
     <title>Nowdoc string quoting example with variables</title>
     <programlisting role="php">
 <![CDATA[
+<?php
 class foo
 {
     var $foo;

Modified: phpdoc/de/trunk/reference/filesystem/constants.xml
===================================================================
--- phpdoc/de/trunk/reference/filesystem/constants.xml	2019-02-21 08:58:10 UTC (rev 346866)
+++ phpdoc/de/trunk/reference/filesystem/constants.xml	2019-02-21 09:20:31 UTC (rev 346867)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 338261 Maintainer: wiesemann Status: ready -->
+<!-- EN-Revision: 346812 Maintainer: wiesemann Status: ready -->
 <appendix xml:id="filesystem.constants" xmlns="http://docbook.org/ns/docbook">
  &reftitle.constants;
  &extension.constants;
@@ -211,7 +211,7 @@
    <listitem>
     <simpara>
      Suche den Dateinamen <parameter>filename</parameter> im
-     <link linkend="ini.include-path">include_path</link> (seit PHP 5).
+     <link linkend="ini.include-path">include_path</link>
     </simpara>
    </listitem>
   </varlistentry>
@@ -243,7 +243,7 @@
    </term>
    <listitem>
     <simpara>
-     EOL-Zeichen entfernen (seit PHP 5).
+     EOL-Zeichen entfernen.
     </simpara>
    </listitem>
   </varlistentry>
@@ -254,7 +254,7 @@
    </term>
    <listitem>
     <simpara>
-     Leerzeilen überspringen (seit PHP 5).
+     Leerzeilen überspringen.
     </simpara>
    </listitem>
   </varlistentry>

Modified: phpdoc/de/trunk/reference/math/functions/mt-rand.xml
===================================================================
--- phpdoc/de/trunk/reference/math/functions/mt-rand.xml	2019-02-21 08:58:10 UTC (rev 346866)
+++ phpdoc/de/trunk/reference/math/functions/mt-rand.xml	2019-02-21 09:20:31 UTC (rev 346867)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 344025 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 346848 Maintainer: sammywg Status: ready -->

 <refentry xml:id="function.mt-rand" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>

Modified: phpdoc/de/trunk/reference/math/functions/mt-srand.xml
===================================================================
--- phpdoc/de/trunk/reference/math/functions/mt-srand.xml	2019-02-21 08:58:10 UTC (rev 346866)
+++ phpdoc/de/trunk/reference/math/functions/mt-srand.xml	2019-02-21 09:20:31 UTC (rev 346867)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 344025 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 346848 Maintainer: sammywg Status: ready -->

 <refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.mt-srand">
  <refnamediv>

Modified: phpdoc/de/trunk/reference/strings/functions/echo.xml
===================================================================
--- phpdoc/de/trunk/reference/strings/functions/echo.xml	2019-02-21 08:58:10 UTC (rev 346866)
+++ phpdoc/de/trunk/reference/strings/functions/echo.xml	2019-02-21 09:20:31 UTC (rev 346867)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 342214 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 346811 Maintainer: sammywg Status: ready -->

 <refentry xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://docbook.org/ns/docbook" xml:id="function.echo">
  <refnamediv>
@@ -88,46 +88,11 @@
 <?php
 echo "Hallo Welt";

-echo "Diese Ausgabe geht über
-mehrere Zeilen. Die Zeilenumbrüche werden
-ebenfalls ausgegeben.";
-
-echo "Diese Ausgabe geht über\nmehrere Zeilen. Die Zeilenumbrüche werden\nebenfalls ausgegeben.";
-
-echo "Escape Zeichen werden \"so realisiert\".";
-
-// Sie können Variablen innerhalb eines echo-Statements verwenden
-$foo = "foobar";
-$bar = "barbaz";
-
-echo "foo ist $foo"; // foo ist foobar
-
-// Sie können auch Arrays nutzen
-$bar = array("wert" => "foo");
-
-echo "Das ist {$bar['wert']} !"; // Das ist foo !
-
-// Wenn Sie einfache Anführungszeichen verwenden, wird der Name der Variable
-// anstelle ihres Inhalts ausgegeben
-echo 'foo ist $foo'; // foo ist $foo
-
-// Sie können auch ausschließlich Variablen ausgeben,
-// sofern Sie keine weiteren Zeichen ausgeben wollen
-echo $foo;          // foobar
-echo $foo,$bar;     // foobarbarbaz
-
 // Zeichenketten können entweder individuell als mehrere Argumente oder
 // miteinander verbunden als einzelnes Argument übergeben werden
 echo 'Dieser ', 'String ', 'besteht ', 'aus ', 'mehreren Parametern.', chr(10);
 echo 'Dieser  ' . 'String ' . 'wurde ' . 'mit ' . 'Stringverkettung erzeugt.' . "\n";

-echo <<<END
-Hier wird die "here document"-Syntax verwendet, um mehrere
-Zeilen mit $variablen Interpolation auszugeben. Beachten Sie,
-dass das sich das "here document"-Endzeichen in einer Zeile
-mit nur einem Strichpunkt aber ohne Leerzeichen o.ä. stehen muss!
-END;
-
 // Da echo sich nicht wie eine Funktion verhält, ist der folgende Code ungültig.
 ($eine_variable) ? echo 'true' : echo 'false';


Modified: phpdoc/de/trunk/reference/strings/functions/money-format.xml
===================================================================
--- phpdoc/de/trunk/reference/strings/functions/money-format.xml	2019-02-21 08:58:10 UTC (rev 346866)
+++ phpdoc/de/trunk/reference/strings/functions/money-format.xml	2019-02-21 09:20:31 UTC (rev 346867)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 297028 Maintainer: nobody Status: ready -->
+<!-- EN-Revision: 346848 Maintainer: nobody Status: ready -->

 <refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.money-format">
  <refnamediv>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.