PHP Array function-array_diff ()

Source: Internet
Author: User
The Array_diff () function returns an array of difference sets for two arrays. The array includes all the key values in the array being compared, but not in any other parameter array, and the key name remains unchanged in the returned array. Array_diff (Array1,array2,array3 ...); Array1: Required. The first array to compare with the other array. Array2: Required. The array to compare with the first array. ARRAY3: Optional. The array to compare with the first array. Note: One or more arrays can be compared to the first array. <?php
$a 1 = array(0=> ' Cat ',1=> ' Dog ',2=> ' Horse ');
$a 2 = array(3=> ' Horse ',4=> ' Dog ',5=> ' Fish ');
Print_r (Array_diff($a 1,$a 2));
?> output: Array ([0] = Cat)

PHP Array function-array_diff ()

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.