Skip to content

Instantly share code, notes, and snippets.

@ruliarmando
Created May 15, 2013 09:56
Show Gist options
  • Save ruliarmando/5582885 to your computer and use it in GitHub Desktop.
Save ruliarmando/5582885 to your computer and use it in GitHub Desktop.
<?php
$arr = array(
'ayam',
'angsa',
'bebek',
'ayam',
'itik',
'angsa',
);
$count = array_count_values($arr);
foreach(array_unique($arr) as $a){
echo $a." : ".$count[$a]."<br />";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment