<<< Previous question <<< Question ID#0364.md >>> Next question >>>
What is the output of the following PHP script?
$values = [
10, 20, '0',
'123hello',
'hello123'
];
echo array_sum($values);
Enter the exact script output
- A) 153
- B) 123hello
- C) hello123
- D) 1
Answer
Answer: A