You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
336 B
PHP

<?php
function string_range($str1)
{
preg_match_all("/([0-9]{1,2})-?([0-9]{0,2}) ?,?;?/", $str1, $a);
$x = array ();
foreach ($a[1] as $k => $v)
{
$x = array_merge ($x, range ($v, (empty($a[2][$k])?$v:$a[2][$k])));
}
return ($x);
}
$test_string = '1-2 18-20 9-11';
print_r(string_range($test_string));
?>