<?php $input = "0-1-1-3-1-1-3-5-0"; $array = explode('-', $input); $result = array_unique($array) + array_fill(0, count($array), 0); ksort($result); var_dump(implode('-',$result));
You have javascript disabled. You will not be able to edit any code.