Peculiarities of the ++ and -- Operators : Arithmetic Operators « Operator « PHP
- PHP
- Operator
- Arithmetic Operators
Peculiarities of the ++ and -- Operators
<?
$b=true;
echo "b: $b<br>";
$b++;
echo "b: $b<br>";
?>
Related examples in the same category