สอนเขียนเช็คค่าซ้ำในตัวแปรชนิด array ด้วยคำสั่ง array_count_values โดยจะเช็คและนับค่าที่ซ้ำให้โดยอัตโนมัติ สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง เช็คค่าซ้ำใน array ด้วย array_count_values
<?php
$a = array("php", "python", "php", "ruby", "go", "php");
print_r( array_count_values( $a ) );
?>
ผลลัพธ์
Array ( [php] => 3 [python] => 1 [ruby] => 1 [go] => 1 )