Q. What will be the output of the following PHP code?
Code:
<?php $num = 6; $num1 = 6; echo ($num === $num1); ?>
β
Correct Answer: (B)
1
<?php $num = 6; $num1 = 6; echo ($num === $num1); ?>
You must be Logged in to update hint/solution