สอนเขียนโปรแกรมลบค่าซ้ำใน array PHP ด้วย array_unique โดยคำสั่งนี้จะลบข้อมูลที่ซ้ำออกจาก array ให้อัตโนมัติ สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง ลบค่าซ้ำใน array PHP ด้วย array_unique
<?php
$a = array("red", "blue", "red", "blue", "green", "green");
echo "ก่อนใช้คำสั่ง array_unique = ";
print_r( $a );
echo "<br/>";
echo "หลังใช้คำสั่ง array_unique = ";
print_r( array_unique( $a ) );
echo "<br/>";
?>
ผลลัพธ์
ก่อนใช้คำสั่ง array_unique
Array ( [0] => red [1] => blue [2] => red [3] => blue [4] => green [5] => green )
หลังใช้คำสั่ง array_unique
Array ( [0] => red [1] => blue [4] => green )