Delete array has repeated values

Source: Internet
Author: User
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--------------------
$a = array (a,b,c);
$b = Array (b);
Print_r (Array_diff ($a, $b));
Array
(
[0] = a
[2] = C
)

------Solution--------------------
Reference:
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--------------------
Reference:
with Array_diff ($array _a, $array _b)


$c = Array_diff ($a, $b);
echo "C = {";
foreach ($c as $key = $value)
{
echo $value. ",";
}
echo "}
\ n ";
------Solution--------------------
Reference:
with Array_diff ($array _a, $array _b)

Read more about the function of the handbook
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.