Addition: 7 + 10 = 17
Subtraction: 7 - 10 = -3
Multiplication: 7 * 10 = 70
Division: 7 / 10 = 0.7
Modulus: 7 % 10 = 7
Exponentiation: 7 ** 10 = 282475249

Pre-increment example below:
8
8

Post-increment example below:
8
9

PHP supports various arithmetic operators: addition, subtraction, multiplication, division, modulus, and exponentiation. Pre-increment increments variable $a first then the new value is returned to the same variable $a. Post-increment first returns the original value and thenincrements. The new value is stored in a temporary internal variable.