PHP Arithmetic Operators Example
Examples of Arithmetic Operations
Addition: 15
Subtraction: 5
Multiplication: 50
Division: 2
Explanation of Arithmetic Operators
In PHP, arithmetic operators are used to perform basic mathematical operations.
Here are the main operators and what they do:
- Addition (+): Adds two numbers together. For example,
10 + 5
results in 15
.
- Subtraction (-): Subtracts the second number from the first. For example,
10 - 5
results in 5
.
- Multiplication (*): Multiplies two numbers. For example,
10 * 5
results in 50
.
- Division (/): Divides the first number by the second. For example,
10 / 5
results in 2
.