From 0156acd4e713121bdc32712fa2d24a7f3b6866ca Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Thu, 6 Sep 2007 13:16:38 +0000 Subject: [PATCH] Fixed bug#42577 (lill' mistake in echo's manpage) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@242233 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/echo.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/strings/functions/echo.xml b/reference/strings/functions/echo.xml index 2b08bd2c68..13afe4f268 100644 --- a/reference/strings/functions/echo.xml +++ b/reference/strings/functions/echo.xml @@ -1,5 +1,5 @@ - + echo @@ -96,9 +96,9 @@ $bar = "barbaz"; echo "foo is $foo"; // foo is foobar // You can also use arrays -$bar = array("value" => "foo"); +$baz = array("value" => "foo"); -echo "this is {$bar['value']} !"; // this is foo ! +echo "this is {$baz['value']} !"; // this is foo ! // Using single quotes will print the variable name, not the value echo 'foo is $foo'; // foo is $foo