<?php$num = 6;$num1 = 6;echo ($num === $num1);?>
=== operator returns 1 if $num and $num1 are equivalent and $num and $num1 have the same type.
Previous Question Next Question
Your comments will be displayed only after manual approval.