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

Array Functions

What is the output?

PHP
$arr = [3, 1, 4, 1, 5];
echo count($arr) . "-" . array_sum($arr);

🔮 What is the output?