What does the array operator '===' mean?

  • Identity comparison
  • Value comparison
  • Index assignment
  • Array concatenation
The '===' operator in PHP is the identity comparison operator. It compares both the value and the type of the operands. It returns true if the operands are identical, and false otherwise. Learn more: http://php.net/manual/en/language.operators.comparison.php
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *