Add missing echo in example code comment

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@330985 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Yasuo Ohgaki 2013-07-20 03:27:05 +00:00
parent 84d43cf819
commit 1f540fa961

View file

@ -234,7 +234,7 @@ $a = $b += 3; // $a = ($b += 3) -> $a = 5, $b = 5
// mixing ++ and +
$a = 1;
echo ++$a + $a++; // same as ++$a; $a + $a; $a++; prints 4
echo ++$a + $a++; // same as ++$a; echo $a + $a; $a++;
?>
]]>
</programlisting>