📌  相关文章
📜  php 在不使用内置函数的情况下获取数组中的重复键 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:17.681000             🧑  作者: Mango

代码示例2
$arr = array(3,5,2,5,3,9);
foreach($arr as $key => $val){
  //remove the item from the array in order 
  //to prevent printing duplicates twice
  unset($arr[$key]); 
  //now if another copy of this key still exists in the array 
  //print it since it's a dup
  if (in_array($val,$arr)){
    echo $val . " ";
  }
}