Skip to content

Instantly share code, notes, and snippets.

@yasaryousuf
Created August 4, 2019 11:43
Show Gist options
  • Save yasaryousuf/68c520bd52241a2d04578c3929f7209b to your computer and use it in GitHub Desktop.
Save yasaryousuf/68c520bd52241a2d04578c3929f7209b to your computer and use it in GitHub Desktop.
<?php
//Enter your code here, enjoy!
$array = [1, 2, 2, 2, 3];
$newArray = [];
$dupCount = 0;
foreach($array as $el) {
if(in_array($el, $newArray)) {
$dupCount++;
}
$newArray[] = $el;
}
echo $dupCount;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment