Mega Code Archive
Categories
/
Php
/
Operator
Peculiarities of the ++ and -- Operators
$b=true; echo "b: $b
"; $b++; echo "b: $b
"; ?>