PHP array to repeat the data sample

Source: Internet
Author: User

This article mainly introduces the PHP array to repeat the data sample, sometimes the obtained PHP array always appears value duplicates, use the following method can remove duplicate data

Duplicate data beginning with a number such as: The Code is as follows: Array ([0] => [K1] => [1] => 2123 [K2] => 2123) This method can be removed with a value of number key, first the number Groups are sorted in reverse order of key, and then the duplicate values are removed using the Array_unique method. Cannot apply to situations where the same value exists for different key values: function Array_unique_value ($arr = Array ()) {Array_multisort ($arr, Sort_des       C, Array_keys ($arr));   Print_r (Array_unique ($arr)); }

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.