PHP - Variables and Data Types
Consider this PHP code snippet:
What is the issue and how to fix it?
$x = '10 apples';
$y = 5;
$z = $x + $y;
echo $z;
What is the issue and how to fix it?
$x = '10 apples';
$y = 5;
$z = $x + $y;
echo $z;
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions