1.

What is the difference between = , == and ===?

Answer»

These all are PHP Operators.

  • = is used to assign VALUE in variables. It is also called ASSIGNMENTS operators.
  • == is used to CHECK if the benefits of the two operands are equal or not.
  • === is used checks the values as well as its data type.


Discussion

No Comment Found