Search
 
SCRIPT & CODE EXAMPLE
 

PHP

get duplicate value from array php

$arr = array(1, 4, 6, 1, 8, 9, 4, 6);

$unique = array_unique($arr);

$duplicates = array_diff_assoc($arr, $unique);

print_r($duplicates);
Array ( [3] => 1 [6] => 4 [7] => 6 )
Comment

php get keys of duplicate values in array

<?php
/** 
	Examples of these functions:
	array_unique, 
    array_diff_assoc, 
    array_diff, 
    array_keys, 
    array_intersect 
    
    Examle with an array: 
*/
$array = array('a', 'a', 'b', 'c', 'd');

// Unique values
$unique = array_unique($array);

// Duplicates
$duplicates = array_diff_assoc($array, $unique);

// Unique values
$result = array_diff($unique, $duplicates);

// Get the unique keys
$unique_keys = array_keys($result);

// Get duplicate keys
$duplicate_keys = array_keys(array_intersect($array, $duplicates));
Comment

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 . " ";
  }
}
Comment

PREVIOUS NEXT
Code Example
Php :: php namespace class 
Php :: php max int 
Php :: laravel factory pass parameter 
Php :: Laravel (8) - Routing to controller with optional parameters 
Php :: laravel get from model 
Php :: php api 
Php :: error laravel 404 in server 
Php :: laravel mailable from 
Php :: php str starts with 
Php :: Invalid credentials. symfony 
Php :: laravel load relationship 
Php :: php check for duplicates in array 
Php :: laravel how to nested foreach 
Php :: laravel one command for model table and controller 
Php :: laravel download file change name 
Php :: php create html code 
Php :: connect php in sql server 
Php :: php public folder 
Php :: wordpress highlight text excerpt 
Php :: PHP sha1 — Calculate the sha1 hash of a string 
Php :: laravel eloquent get x number of results 
Php :: Schema::defaultStringLength(199); 
Php :: laravel migration drop foreign keys 
Php :: get 2 hrs before data in php 
Php :: codeigniter number format function 
Php :: php artisan make:widget 
Php :: get month days in php 
Php :: custom blade directive 
Php :: how to check page loading time in php 
Php :: php substr_replace 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =