Skip to content

Instantly share code, notes, and snippets.

@baralogi
Last active November 25, 2020 03:20
Show Gist options
  • Save baralogi/afc8e0f772c4ca12929e38ef9727f09e to your computer and use it in GitHub Desktop.
Save baralogi/afc8e0f772c4ca12929e38ef9727f09e to your computer and use it in GitHub Desktop.
<?php
$arr = array(Senin, Selasa, Rabu, Senin, Senin);
foreach(array_count_values($arr) as $k => $v){
if($v > 1){
echo "Hari <b>".$k."</b> ada ".$v." buah di dalam array<br />";
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment