php 数组去除重复值

WBOY
Release: 2016-06-23 14:02:14
Original
858 people have browsed it




我要把花红线的键值去过  只留下后面的两个键值   应该怎么实现


回复讨论(解决方案)

$arr=array(38,39,41,38,39,41,42,43);$c=array_count_values($arr);function foo($v){    global $c;    if($c[$v]==1){		  return true;	}	return false;}print_r(array_filter($arr,'foo'));
Copy after login

Array
(
[6] => 42
[7] => 43
)

$ar = array(38, 39, 40, 41, 38, 39, 40, 41, 42, 43);foreach(array_count_values($ar) as $k=>$v)  if($v == 1) $res[] = $k;print_r($res);
Copy after login
Array ( [0] => 42 [1] => 43 )

也可以这样写

$ar = array(38, 39, 40, 41, 38, 39, 40, 41, 42, 43);$t = array_intersect(array_count_values($ar), array(1));$t = array_intersect($ar, array_keys($t));print_r($t);
Copy after login
Array ( [8] => 42 [9] => 43 ) 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template