Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8206857
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T08:49:00+00:00 2026-06-07T08:49:00+00:00

Is there any function in PHP which will give an array of uncommon values

  • 0

Is there any function in PHP which will give an array of uncommon values from two or more arrays?

For example:

$array1 = array( "green", "red", "blue");
$array2 = array( "green", "yellow", "red");
....
$result = Function_Needed($array1, $array2,...);
print_r($result);

Should give the output:

array("blue", "yellow", ...);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T08:49:03+00:00Added an answer on June 7, 2026 at 8:49 am

    Use array_diff and array_merge:

    $result = array_merge(array_diff($array1, $array2), array_diff($array2, $array1));
    

    Here’s a demo.

    For multiple arrays, combine it with a callback and array_reduce:

    function unique(&$a, $b) {
        return $a ? array_merge(array_diff($a, $b), array_diff($b, $a)) : $b;
    }
    
    $arrays = array(
        array('green', 'red', 'blue'),
        array('green', 'yellow', 'red')
    );
    
    $result = array_reduce($arrays, 'unique');
    

    And here’s a demo of that.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like 6:15pm. Is there any function in PHP which will
Is there any php function in our time, which generates absolutely unique, random string?
Is there any function available in PHP to check whether an array is empty
I'm interested if there is any function like array_map or array_walk from php. Don't
Is there any globals function in Javascript which is similar to PHP globals that
Is there any function in PHP to make the first character of the word
Possible Duplicate: Select xml node by attribute in php Is there any function like
Is there any special function to parse a .conf file in php like parse_ini_file()
Is there any equivalent function that returns the character at position X in PHP?
Is there any way that I could enjoy a decodeValue() function in PHP, too?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.