<?php $input = '1-,9-390.99'; $chunks = array_chunk(preg_split('/(-|,)/', $input), 2); $result = array_combine(array_column($chunks, 0), array_column($chunks, 1)); var_dump($result);
You have javascript disabled. You will not be able to edit any code.