Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 385 Bytes

0408.md

File metadata and controls

21 lines (17 loc) · 385 Bytes

What is the output of the following script?

$str = 'val1,val2,,val4,';
echo count(explode(','$str));

Enter the exact script output

  • A) 5
  • B) 4
  • C) 6
  • D) 0
Answer

Answer: A