svn: /phpdoc/de/trunk/reference/strings/functions/ trim.xml
[email protected] (Christoph Michael Becker)
| Newsgroups | php.doc.de |
|---|---|
| Message-ID | <[email protected]> |
cmb Tue, 17 Oct 2017 11:38:18 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=343253
Log:
Fix typo
Patch provided by anonymous user
Changed paths:
U phpdoc/de/trunk/reference/strings/functions/trim.xml
Modified: phpdoc/de/trunk/reference/strings/functions/trim.xml
===================================================================
--- phpdoc/de/trunk/reference/strings/functions/trim.xml 2017-10-17 10:59:42 UTC (rev 343252)
+++ phpdoc/de/trunk/reference/strings/functions/trim.xml 2017-10-17 11:38:18 UTC (rev 343253)
@@ -107,7 +107,7 @@
<?php
$text = "\t\tDieser Text besteht aus mehreren Wörtern :) ... ";
-$binary = "\x09Beispeilhafter String\x0A";
+$binary = "\x09Beispielhafter String\x0A";
$hello = "Hallo Welt";
var_dump($text, $binary, $hello);
@@ -137,7 +137,7 @@
<screen>
<![CDATA[
string(51) " Dieser Text besteht aus mehreren Wörtern :) ... "
-string(23) " Beispeilhafter String
+string(23) " Beispielhafter String
"
string(10) "Hallo Welt"