Math Arithmetic Operators in PHP

This will add the two values together using variables x + y

12

This will subtract the two values together using variables x - y

-8

This will multiply the two values together using variables x * y

20

This will divide the two values together using variables x / y

0.2

This will find the power of the two values together using variables x ** y

1024