Last active
November 25, 2020 03:20
-
-
Save baralogi/afc8e0f772c4ca12929e38ef9727f09e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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