(PCC)::[How-to-use-Comparison-operator:-Identical-(===)-in-php]::[php]
<!DOCTYPE html> <html> <body> <?php $x = 100; $y = "100"; var_dump($x === $y); // returns false because types are not equal ?> </body> </html>