PHP three-dimensional array de-weight (sample code) _php instance

Source: Internet
Author: User
Suppose that the array is called $my _array;
Copy the Code code as follows:
Creates a new, empty array.
$tmp _array = Array ();

$new _array = Array ();

1. Loops out all the rows. ($val is a row)
foreach ($my _array as $k = + $val) {

$hash = MD5 (Json_encode ($val));
if (In_array ($hash, $tmp _array)) {
Echo (' This line has been over ');
}else{
2. In the body of the Foreach loop, the hash of each array object is assigned to that temporary array.
$tmp _array[] = $hash;
$new _array[] = $val;
}
}

Print_r ($new _array);

$new _array is a filtered array of data that is not duplicated.

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