Question:What will the following script output?
<?php ob_start(); for ($i = 0; $i < 10; $i++) { echo $i; } $output = ob_get_contents(); ob_end_clean(); echo $ouput; ?>
A 12345678910
B 1234567890
C 0123456789
D Nothing
E A notice
+ AnswerE
+ Explanation
+ Report