Showing posts with label Increment/ Decrement operators php. Show all posts
Showing posts with label Increment/ Decrement operators php. Show all posts

Wednesday, March 6, 2024

PHP Increment/ Decrement operators


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>";
?>

PHP Increment/ Decrement operators

Output :-

php increment /Decrement operators example/output



READ MORE