diff --git a/functions/strings.xml b/functions/strings.xml index ddf0c5f7a6..e334d52c2d 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -8,7 +8,7 @@ instead --> - + String functions Strings @@ -558,15 +558,11 @@ echo 'foo is $foo'; // foo is $foo echo $foo; // foobar echo $foo,$bar; // foobarbarbaz -// Some people prefer passing multiple parameters to echo over concatenation. -echo 'This ', 'string ', 'was ', 'made ', 'with multiple parameters.', chr(10); -echo 'This ' . 'string ' . 'was ' . 'made ' . 'with concatenation.' . "\n"; - echo <<