[PHP-DOC] cvs: phpdoc /de/functions strings.xml From: Thomas Schuermann (thomas.schuermann <email protected>)
Date: 07/08/00

tschuer Sat Jul 8 10:53:50 2000 EDT

  Modified files:
    /phpdoc/de/functions strings.xml
  Log:
  Some minor corrections
  
Index: phpdoc/de/functions/strings.xml
diff -u phpdoc/de/functions/strings.xml:1.17 phpdoc/de/functions/strings.xml:1.18
--- phpdoc/de/functions/strings.xml:1.17 Sat Jul 1 12:42:57 2000
+++ phpdoc/de/functions/strings.xml Sat Jul 8 10:53:49 2000
@@ -1712,7 +1712,7 @@
       <programlisting role="php">
 $var1 = "Hallo";
 $var2 = "hallo";
-if ( !strcasecmp($var1,$var2) ) {
+if (!strcasecmp($var1, $var2) ) {
     echo '$var1 ist wie $var2 bei schreibweise-unabhängigem Vergleich';
 }
       </programlisting>
@@ -2221,7 +2221,7 @@
 strspn("42 ist die Antwort, was ist die Frage ...","1234567890");
                   </programlisting>
      </informalexample>
- das Ergebnis 2.
+ als Ergebnis 2.
     </para>
    <simpara>
      Siehe auch <function>strcspn</function>.
@@ -2261,7 +2261,7 @@
       <programlisting role="php">
 $email = 'sterling <email protected>';
 $domain = strstr ($email, '@');
-print $domain; // gibt designmultimedia.com zurück
+print $domain; // gibt  <email protected> zurück
       </programlisting>
      </example>
     </para>
@@ -2720,7 +2720,8 @@
         <title><function>ucfirst</function>-Beispiel:</title>
         <programlisting role="php">
 $text = 'markus ist ein kleines schaf.';
-$text = ucfirst($text); // $text ist nun "Markus ist ein kleines schaf."
+$text = ucfirst ($text); // $text ist nun "Markus ist ein kleines
+ // schaf."
         </programlisting>
     </example>
     </para>
@@ -2760,7 +2761,8 @@
        <title><function>ucwords</function>-Beispiel:</title>
        <programlisting role="php">
 $text = "markus ist ein kleines schaf.";
-$text = ucwords($text); // $text ist jetzt: "Markus Ist Ein Kleines Schaf."
+$text = ucwords ($text); // $text ist jetzt: "Markus Ist Ein Kleines
+ // Schaf."
        </programlisting>
     </example>
     </para>