<?php $string = '3-6,8,12,14-50'; $result = []; foreach (explode(',', $string) as $v) { $x = explode('-', $v); array_push($result, ...range($x[0], $x[1] ?? $v)); } var_export($result);
You have javascript disabled. You will not be able to edit any code.