Comparison operator: Identical (===)


SUBMITTED BY: henry1874w

DATE: June 12, 2017, 3:27 p.m.

FORMAT: Text only

SIZE: 161 Bytes

HITS: 370

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $x = 100;
  6. $y = "100";
  7. var_dump($x === $y); // returns false because types are not equal
  8. ?>
  9. </body>
  10. </html>

comments powered by Disqus