programming-examples/php/Arrays/PHP script to merge two commas separated lists with unique value only..php

7 lines
227 B
PHP
Raw Normal View History

2019-11-15 12:59:38 +01:00
<?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";
?>