Php merge the same element in the array

Source: Internet
Author: User
This article mainly introduces the php method for merging the same elements in an array. it is a very practical technique to use a custom function to traverse the array to merge the same items in the array, for more information about how to merge the same elements in an array in php, see the example in this article. Share it with you for your reference. The details are as follows:

We have introduced N methods for deleting repeated arrays. In this example, the same elements in the array are deleted and only one element is retained. The example code is as follows:

The code is as follows:

<? Php
// Delete the same element from the array and retain only one element.
Function formatArray ($ array)
{
Sort ($ array );
$ Tem = "";
$ Temarray = array ();
$ J = 0;
For ($ I = 0; $ I {
If ($ array [$ I]! = $ Tem)
{
$ Temarray [$ j] = $ array [$ I];
$ J ++;
}
$ Tem = $ array [$ I];
}
Return $ temarray;
}
// Test the call function
$ Array = array ('A', 'BB ', 'AA', 3,4, 5, 5, 5, 'BC ');
$ Arr = formatArray ($ array );
Print_r ($ arr );
?>

I hope this article will help you with php programming.

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.