PHP range() Function
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
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
)
|
Complete PHP Array Reference
The Altova MissionKit is a suite of intelligent XML tools, including:
XMLSpy® – industry-leading XML editor
- Support for all XML-based technologies
- Graphical editing views, powerful debuggers, code generation, & more
MapForce® – graphical data mapping tool
- Drag-and-drop data conversion with code generation
- Support for XML, DBs, EDI, Excel® 2007, text, Web services
StyleVision® – visual stylesheet designer
- Drag-and-drop stylesheet design for XML & databases
- Output to HTML, PDF, RTF, Word 2007, & more
And more…
Try before you buy with a free fully functional 30-day trial
Download today
|
|
Get Your Diploma!
W3Schools' Online Certification Program is the perfect solution for busy
professionals who need to balance work, family, and career building.
The HTML Certificate is for developers who want to document their knowledge of HTML, XHTML, and CSS.
The JavaScript Certificate is for developers who want to document their knowledge of JavaScript and the HTML DOM.
The XML Certificate is for developers who want to document their knowledge of XML, XML DOM and XSLT.
The ASP Certificate is for developers who want to document their knowledge of ASP, SQL, and ADO.
The PHP Certificate is for developers who want to document their knowledge of PHP and SQL (MySQL).
|
|