对数组中出现的值进行计数,返回一次值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对数组中出现的值进行计数,返回一次值相关的知识,希望对你有一定的参考价值。
I needed to trim a simple numerical array that might have duplicate values into an array with no duplicates. I came up with this before finding array_unique(). D'oh.
<?php function returnValueOnce($array){ //array_count_values returns an array( [1]=>3 [2]=> 4 [3]=> 1 ) return $arrayTrim; //returns numerical array(1,2,3) } // the array_unique() function does this too, so now I'm the wiser.... // it removes duplicate values from an array. If two or more array values are the same, the // first appearance will be kept and the other will be removed. ?>
以上是关于对数组中出现的值进行计数,返回一次值的主要内容,如果未能解决你的问题,请参考以下文章