Skip to main content
🔮 Output PredictionPH PHP Medium⚡+20 XP

Type Coercion

What does this output?

PHP
$a = "5 apples";
$b = 3;
echo $a + $b;

🔮 What is the output?