PHP - Variables and Data Types
What will be the output of the following PHP code?
$a = '5';
$b = 3;
$c = $a + $b;
echo gettype($c) . ' ' . $c;
$a = '5';
$b = 3;
$c = $a + $b;
echo gettype($c) . ' ' . $c;
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions