<?php $string = '3-6,8,12,14-20'; var_export( json_decode( '[' . preg_replace_callback( '/(\d+)-(\d+)/', fn($m) => implode(',', range($m[1], $m[2])), $string ) . ']' ) );
You have javascript disabled. You will not be able to edit any code.