By now, you must have started writing those scripts and started working on PHP. Now, it’s time for you to learn about the operators available in PHP. An operator is something in which one or more values are fed and it gives another value as a result.
In general there are three types of operators:
- Unary – it operates on only one value.
- Binary – it operates on two or more than two values.
- Ternary – it is used to select between two expressions depending on the third one.
There are many types of operators in PHP; some of them are useful but some are not. In this tutorial we will be studying about the most useful operators in PHP, which are:
- Arithmetic operators
- Assignment operators
- Comparison operators
- Logical operators
Arithmetic Operators
Addition (+)
$a=20; $b=10;
$c=$a+$b;
Result = 30
Subtraction (-)
$a=15; $b=10;
$c=$a-$b;
Result = 5
Multiplication (*)
$a=5; $b=2;
$c=$a*$b;
Result = 10
Division (/)
$a=30; $b=2;
$c=$a/$b;
Result = 15
Modulus (%)
$a=5; $b=2;
$c=$a%$b;
Result = 1
Increment (++)
$a=5; $a++;
Result = 6
Decrement (--)
$a=5; $a--;
Result = 4
No comments:
Post a Comment