Write a PHP script to merge two commas separated lists with unique value only
- برمجة بي اتش بي
- 2021-09-09
- mhanasmh00489829403
الأجوبة
<?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";
?>
Sample Output:
4, 5, 6, 7, 8
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال