Arithmetic Operators in PHP

What are the Arithmetic Operators in PHP?

Explanation

The Arithmetic operators in PHP are Negation, Addition, Subraction, Multiplication, Division, Modulus
Example Name Result
-$a Negation Opposite of $a.
$a + $b Addition Sum of $a and $b.
$a - $b Subraction Difference of $a and $b.
$a * $b Multiplication Product of $a and $b.
$a / $b Division Quotient of $a and $b.
$a % $b Modulus Remainder of $a divided by $b.

The division operator returns a float value unless the two operands are integers. The Operands of modulus are converted to integers before processing.

PHP Topics


Ask Questions

Ask Question