Spaceship Operator
The Spaceship operator is one of the many new features introduced in PHP with its 7.0 version. It is a three-way comparison operator. The conventional comparison operators (<, >, !=, ==, etc.) return true or false (equivalent to 1 or 0). On the other hand, the spaceship operator has three possible return values: -1,0,or 1. […]