Server - Side Technology-1 PHP
Server - Side Technology-1 PHP
x=y x=y The left operand gets set to the value of the expressio
right
x += y x=x+y Addition
x -= y x=x-y Subtraction
x *= y x=x*y Multiplication
x /= y x=x/y Division
x %= y x=x%y Modulus
=== Identical $x === $y Returns true if $x is equal to $y, and they are of the sam
!== Not identical $x !== $y Returns true if $x is not equal to $y, or they are not of
type
<=> Spaceship $x <=> $y Returns an integer less than, equal to, or greater than
depending on if $x is less than, equal to, or greater tha
Introduced in PHP 7.
=== Identity $x === $y Returns true if $x and $y have the same key/value
pairs in the same order and of the same types