Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 441 Bytes

0364.md

File metadata and controls

25 lines (21 loc) · 441 Bytes

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