Delete Array has duplicate values
There is a value $a =array (a,b,c) in the original array A;
Compares the value $b =array (b) in array B;
The two phases are compared to get $c= array (a,c);
Excuse me, how does this work?
------Solution--------------------
Cycle judgment or removal
------Solution--------------------
With Array_diff ($array _a, $array _b)
------Solution--------------------
Array_diff, Array subtraction
------Solution--------------------
PHP code
$a = Array (a,b,c), $b = Array (b);p Rint_r (Array_diff ($a , $b));
------Solution--------------------
Explore
with Array_diff ($array _a, $array _b)
------Solution--------------------
http://baike.baidu.com/view/4067743.htm
------ Solution--------------------
In fact you mean to find out the middle difference set of 2 arrays, Array_diff () This system function can
------solution--------------------
The Array_diff () manual has
------solution--------------------
discussion
with Array_diff ($array _a, $array _b)
------Solution--------------------
Explore
with Array_diff ($array _a, $array _b)