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 

+ Answer
+ Explanation
+ Report
Total Preview: 880

Copyright © 2024. Powered by Intellect Software Ltd