Math Operators

10 + 3 = 13
10 - 3 = 7
10 * 3 = 30
10 / 3 = 3.3333333333333
10 % 3 = 1

+ adds numbers, - subtracts, * multiplies, / divides, and % shows the remainder after division. These are the basic math operators in PHP.