OPERATORS IN PHP FIRST PART
OPERATORS IN PHP ARITHMETIC OPERATORS They follow the rules of arithmetic we learned in school. OPERATORS ON STRINGS The first is the chaining operator, the dot . the other is the assignment operator =. COMPARISON OPERATORS As the name implies such operators allow us to compare values. The advice to have total control over the code is to cast before comparing two values of different types and use strict equality === in order to check type and value. In PHP 7 a new comparison operator was introduced, the spaceship operator <=> compares two [...]

