From 9d5f08a74972ba81403492ba57cd89ac58dd2043 Mon Sep 17 00:00:00 2001 From: Derek Ford Date: Sun, 21 Dec 2003 02:58:42 +0000 Subject: [PATCH] undoing changes git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@147061 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/strings.xml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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 <<