Assignment Operators on PHP
The basic assignment operator is «=». Your first inclination might be to think of this as «equal to». Don’t. It really means that the left operand gets set to the value of the expression on the rights (that is, «gets set to»). The value of an assignment expression is the value assigned. That is, the […]