Programming Code Center(PCC)
[PHP]

(PCC)::[How-to-use-Comparison-operator:-Equal-(==)-in-php]::[php]

File Name : index.php

<!DOCTYPE html>
<html>
<body>

<?php
$x = 100;  
$y = "100";

var_dump($x == $y); // returns true because values are equal
?>  

</body>
</html>

Output :