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

  • SEARCH
  • Home
  • 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 1098609
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T00:36:11+00:00 2026-05-17T00:36:11+00:00

I want to compare two arrays if an email address in array 1 exists

  • 0

I want to compare two arrays if an email address in array 1 exists in array 2 (here: uname1@email.com). In that case it should display that the email already exists.

$Array1 = Array
(        
[0] => Array
        (
            [username] => uname1
            [name] => fullname1
            [email] => uname1@email.com

        )
[1] => Array
        (
            [username] => uname2
            [name] => fullname2
            [email] => uname2@email.com    
        )
[2] => Array
        (
            [username] => uname3
            [name] => fullname3
            [email] => uname3@@email.com    
        )        
}   

$Array2 = Array
(    
[0] => Array
        (
            [username] => uname1
            [name] => fullname1
            [email] => uname1@email.com    
        )
}
  • 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-05-17T00:36:12+00:00Added an answer on May 17, 2026 at 12:36 am

    You might want to consider using the email as the key. Something like this:

    $a1 = array();
    foreach ($Array1 as $v) $a1[$v['email']] = $v;
    
    $a2 = array();
    foreach ($Array2 as $v) $a2[$v['email']] = $v;
    
    $intersection = array_values(array_intersect_key($a1, $a2));
    

    This yields an array that contains all the values of the first array that have an email present in the second array. You can then iterate through that array to display error messages.

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

Sidebar

Related Questions

i have two integer array, each size 95700.i want compare to two integer arrays,i
I want to compare two arrays, one coming from a shoppingcart and the other
I have two arrays of System.Data.DataRow objects which I want to compare. The rows
I have two arrays, @a and @b . I want to do a compare
I want to compare two ms-access .mdb files to check that the data they
can i somehow compare two numbers in regex? i want regex that is correct
I want to write a function that accepts two objects as parameters and compare
I want to compare two 1x3 arrays such as: if output[x][y] != [150,25,75] (
How can I Compare values of two arrays to check if 1 array does
How to compare the similarity between two arrays? Say I have: Base Array: [.5,0,0,0,.25,0,0,.25,0,0,0,0]

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.