PHP - Variables and Data Types
What is the output of this PHP code?
$x = '10';
$y = 5;
$z = $x + $y;
echo gettype($z);
$x = '10';
$y = 5;
$z = $x + $y;
echo gettype($z);
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions