Complete PHP Array Reference
The range() function creates an array containing a range of elements.
This function returns an array of elements from low to high.
| 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 |
Note: If the low parameter is higher than the high parameter, the range array will be from high to low.
The output of the code above will be:
The output of the code above will be:
The output of the code above will be:
Complete PHP Array Reference
Your message has been sent to W3Schools.