<?php $input = '3,5,6,9,11,23,14-42'; $result = json_decode('['. preg_replace_callback('/(\d+)-(\d+)/', function($m) { return implode(',', range($m[1], $m[2])); }, $input) .']'); var_dump($result);
You have javascript disabled. You will not be able to edit any code.