PHP array de-duplication sample _php Tutorial

Source: Internet
Author: User
Duplicate data starting with a number such as:
Copy CodeThe code is as follows:
Array (
[0] = 100
[K1] = 100
[1] = 2123
[K2] = 2123)

This method can take the value of the number key to remove, the array is sorted by the key in reverse order, and then use the Array_unique method to remove the duplicate value.
cannot be applied to situations where the same value exists for different key values

Copy the Code code as follows:
function Array_unique_value ($arr = Array ()) {
Array_multisort ($arr, Sort_desc, Array_keys ($arr));
Print_r (Array_unique ($arr));
}

http://www.bkjia.com/PHPjc/736858.html www.bkjia.com true http://www.bkjia.com/PHPjc/736858.html techarticle duplicate data starting with a number such as: The copy Code code is as follows: Array ([0] = [K1] = [1] = 2123 [K2] = 2123) The method can be the value of the key is removed, the array in accordance with the first ...

  • 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.