R
Q. What will be the output of the following PHP code?
Code:
<?php
$a = 123;
$b = "123";
var_dump($a !== $b);
?>
$a = 123;
$b = "123";
var_dump($a !== $b);
?>
- Correct Answer - Option(C)
- Views: 141
- Filed under category PHP
Discusssion
Login to discuss.