Home >> PHP >> range() function in PHP

range() function in PHP

The range() function used for create an array containing a range of elements.

Syntax

range(start,end,step)

Example

$num = range(2,5);
print_r ($num);

Output

Array ( [0] => 2 [1] => 3 [2] => 4 [3] => 5 )

Post Your Comment

Next Questions
reset() function
rsort() function
shuffle() function
sizeof() function
sort() function
uasort() function
uksort() function
usort() function
What is the difference between array_combine() and array_merge()
What are the differences between array_diff(), array_diff_assoc() and array_diff_key()
What is the difference between array_intersect_assoc() and array_intersect_key()
What is difference between array_push() and array_pop()
What is difference between array_product() and array_sum()
What is the difference between session and cookie
What is session & work
What are data types
What are super global variable
$GLOBALS super global variable
$_SERVER super global variable
$_REQUEST super global variable
$_POST super global variable
$_GET super global variable
$_FILES super global variable
$_ENV super global variable
$_COOKIE super global variable

Copyright ©2022 coderraj.com. All Rights Reserved.