In php, I will introduce two commonly used array filter functions, array_filter and array_unique. one is to filter array null values and the other is to filter array repeated values. let's take a look at them now. Syntax: array_filter (... in php, I will introduce two commonly used array filter functions, array_filter and array_unique. one is to filter array null values and the other is to filter array repeated values. let's take a look at them now.
Syntax
Array_filter (array, function)
Parameter description
Array is required. Specifies the input array.
The name of a function. if it is null, all elements with flase values are filtered out.
1, "b" => 2, "c" => 3, "d" => 4, "e" => 5);$array2 = array( 6, 7, 8, 9, 10, 11, 12);echo "Odd :n";print_r(array_filter($array1, "odd"));echo "Even:n";print_r(array_filter($array2, "even"));/* Odd : Array ( [a] => 1 [c] => 3 [e] => 5 ) Even: Array ( [0] => 6 [2] => 8 [4] => 10 [6] => 12 ) */?>
Filter out repeated values in the PHP array
To remove duplicate values from an array, you can use the foreach method or the array_unique method. the following code uses both methods.
";$intStart1 = time();$arrRS = array_unique($arrT);$intEnd2 = time();$intTime2 = $intEnd2 - $intStart1;echo "With array_unique function,Spend time:($intTime2)";echo "";print_r($arrT);print_r($arrRF);print_r($arrRS);echo "
";?>
When $ intTotal is relatively small, for example, the value of $ intRand within 1000 basically does not affect the result, and the execution time of both is similar.
When the value of $ intTotal is greater than 10000 and $ intRand is set to 100, the efficiency of using array_unique is higher than that of foreach loop judgment. $ intRand = 10, the execution time of the two is the same.
Therefore, it can be concluded that when the array capacity is small and it is about 1000 or less, the execution efficiency of the two is almost the same.
When the array capacity is relatively large (the specific value is not tested in detail, you can determine the value if you are interested), as $ intRand increases, array_unique performs better, I don't use the $ intTotal/$ intRand ratio because it doesn't feel proportional, but the larger the ratio, the better the array_unique performance.
To sum up, we recommend that you use array_unuique when filtering array duplicate values. when the array is not large, the efficiency of the two is the same, while the use of array_unique will of course reduce your code by several lines at once, function performance is better when the array capacity is too large
Two-dimensional array deduplication function
PHP array deduplication has a built-in function array_unique (), but the php array_unique function is only applicable to one-dimensional arrays and not to multidimensional arrays. The following provides a two-dimensional array array_unique function
$ V) {if ($ stkeep) $ k = $ stArr [$ k]; if ($ ndformat) {$ tempArr = explode (",", $ v ); foreach ($ tempArr as $ ndkey => $ ndval) $ output [$ k] [$ ndArr [$ ndkey] = $ ndval ;} else $ output [$ k] = explode (",", $ v) ;}return $ output ;}?>
Test
$array2D = array('first'=>array('title'=>'1111','date'=>'2222'),'second'=>array('title'=>'1111','date'=>'2222'),'third'=>array('title'=>'2222','date'=>'3333'));print_r($array2D);print_r(unique_arr($array2D,true));