Answers for "php get all keys with same value in associative array"

PHP
0

php get all values from associative array certain key

$ids = array_column($users, 'id');
Posted by: Guest on May-04-2021
0

php get duplicate keys in array without using inbuilt function

$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 . " ";
  }
}
Posted by: Guest on October-07-2020

Code answers related to "php get all keys with same value in associative array"

Browse Popular Code Answers by Language