W3Schools.com

PHP range() Function


PHP Array Reference Complete PHP Array Reference

Definition and Usage

The range() function creates an array containing a range of elements.

This function returns an array of elements from low to high.

Syntax

range(low,high,step)

Parameter Description
low Required. Specifies the lowest value of the array
high Required. Specifies the highest value of the array
step Optional. Specifies the increment used in the range. Default is 1

Note: This parameter was added in PHP 5



Tips and Notes

Note: If the low parameter is higher than the high parameter, the range array will be from high to low.


Example 1

<?php
$number = range(0,5);
print_r ($number); ?>

The output of the code above will be:

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


Example 2

<?php
$number = range(0,50,10);
print_r ($number);
?>

The output of the code above will be:

Array
(
[0] => 0
[1] => 10
[2] => 20
[3] => 30
[4] => 40
[5] => 50
)


Example 3

<?php
$letter = range("a","d");
print_r ($letter);
?>

The output of the code above will be:

Array
(
[0] => a
[1] => b
[2] => c
[3] => d
)


PHP Array Reference Complete PHP Array Reference
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$3.98 Unlimited Hosting
Premium Website Design
WEB BUILDING
XML Editor - Free Trial!
FREE Website BUILDER
Best Website Templates Top CSS Templates
CREATE HTML Websites
EASY WEBSITE BUILDER
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE