Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 469 Bytes

0095.md

File metadata and controls

19 lines (16 loc) · 469 Bytes

What will be the output of the following code snippet?

$input = [4"4""3"43"3"3333355557777];
echo count(array_unique($input));
  • A) 4
  • B) The script will throw an error message
  • C) 19
  • D) 6
Answer

Answer: A