

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code?
<?php $a1 = array_fill(3, 4, "blue"); $b1 = array_fill(0, 1, "red"); print_r($a1); echo " |
A. | Array ( [3] => blue [4] => blue) |
B. | Array ( [4] => blue [5] => blue [6] => blue) |
C. | Array ( [3] => blue [4] => blue [5] => blue [6] => blue ) |
D. | Array ( [3] => blue [4] => blue [5] => blue [6] => blue ) |
Answer» E. | |