?
What will be the output of the following PHP code ?
What will be the output of the following PHP code ?
<?php
$number = range(0, 5);
print_r ($number);
?>
<?php
$number = range(0, 5);
print_r ($number);
?>
Answer & Solution
Correct Answer:
Option
A
The range() function creates an array containing a range of elements.
Join the Discussion
Login to post a comment or share your explanation.
Login