balanv
balanv

Reputation: 10898

is there any way to get common values between two arrays in php?

Is there a possibility of doing inner join between two arrays in php? for example

if i have two arrays array1,array2

Input :

array1[0]['id']=1 , array1[1]['id']=2 , array1[2]['id']=3

array2[0]['id']=3 , array2[1]['id']=4 , array2[2]['id']=5

Output :

array2[0]['id']=3;

is it possible to retrieve common values with any inbuilt functions?

Thanks, Balan

Upvotes: 4

Views: 4274

Answers (2)

Vijay
Vijay

Reputation: 5433

I couldn't exactly understand what you need.

If i'm guessing right, i think u need intersection of two arrays..

array_intersect can do this ...

If this is not what u want, then please update your question with exact input and expected output..

Upvotes: 0

Pascal MARTIN
Pascal MARTIN

Reputation: 401142

The array_intersect() function might be the one you are looking for ;-)

Upvotes: 8

Related Questions