Write a PHP script to merge two commas separated lists with unique value only

  • برمجة بي اتش بي

Write a PHP script to merge two commas separated lists with unique value only

الأجوبة

<?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
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...