PHP Array Exercises : Generate an array with a range taken from a string
29. Array Range from String
Write a PHP program to generate an array with a range taken from a string.
Sample Solution:
PHP Code:
Output:
Array ( [0] => 1 [1] => 2 [2] => 18 [3] => 19 [4] => 20 [5] => 9 [6] => 10 [7] => 11 )
Flowchart:

For more Practice: Solve these Related Problems:
- Write a PHP script to extract a numerical range from a string and convert it into an array of integers.
- Write a PHP function to parse a string containing a start and end value separated by a delimiter and then generate the full range as an array.
- Write a PHP program to validate a string as a number range and then output the corresponding sequence in an array.
- Write a PHP script to read a string of comma-separated values representing a range and return an array of numbers within that range.
Go to:
PREV : Reverse Sort Array.
NEXT :Create Letter Range with Arbitrary Length.
PHP Code Editor:
Contribute your code and comments through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.