You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
227 B
PHP

<?php
$list1 = "4, 5, 6, 7";
$list2 = "4, 5, 7, 8";
// combine both lists with unique values only
$result = implode("," , array_unique(array_merge(explode(",",$list1),explode(",", $list2))));
echo $result."\n";
?>