Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...