PHP Arithmetic Operators Demonstration

Addition (+):

10 + 5 = 15

Addition adds two numbers together.

Subtraction (-):

10 - 5 = 5

Subtraction finds the difference between two numbers.

Multiplication (*):

10 * 5 = 50

Multiplication calculates the product of two numbers.

Division (/):

10 / 5 = 2

Division splits a number into equal parts.

Modulus (%):

10 % 3 = 1

Modulus finds the remainder after division.