PHP Increment/ Decrement operators
PHP Increment/ Decrement operators
Increment/Decrement Operators :-
- Increment (++)
- Decrement (--)
PHP Increment/ Decrement operators
Example :-
<?php
// Example of increment operator
$a = 5;
echo "Original value of \$a: $a <br>";
$a++; // Increment $a by 1
echo "Value of \$a after incrementing: $a <br>";
// Example of decrement operator
$b = 10;
echo "Original value of \$b: $b <br>";
$b--; // Decrement $b by 1
echo "Value of \$b after decrementing: $b <br>";
?>
Post a Comment