Peculiarities of the ++ and -- Operators : Postfix Prefix Operators : Language Basics PHP Source Code


PHP Source Code » Language Basics » Postfix Prefix Operators »

 

Peculiarities of the ++ and -- Operators



<?
$b=true;
echo "b: $b<br>";
$b++;
echo "b: $b<br>";
?>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Language Basics
» Postfix Prefix Operators