silverglade Posted August 1, 2008 Share Posted August 1, 2008 i was wondering if anyone could help me understand array_intersec_assoc. or what it does. in my book it has $array1 = array( "a" => "apple , "b" => "orange", "c" => "banana"); $array2 = array( "prune", "orange", "banana"); $simArray = array_intersect_assoc($array1,$array2); it says in the book that $simArray will be empty since none of the keys are the same. but im not sure what array_intersect_assoc does or what it is looking for in both arrays, what conditions, and what it tries to put into $simArray. sorry if this is confusing. any help is greatly appreciated. thanks. derek Link to comment https://forums.phpfreaks.com/topic/117749-solved-array_intersec_assoc-question-about-what-it-does/ Share on other sites More sharing options...
lemmin Posted August 1, 2008 Share Posted August 1, 2008 It returns an array with all of the key value combinations that are the same in two different arrays http://www.php.net/manual/en/function.array-intersect-assoc.php Link to comment https://forums.phpfreaks.com/topic/117749-solved-array_intersec_assoc-question-about-what-it-does/#findComment-605653 Share on other sites More sharing options...
silverglade Posted August 1, 2008 Author Share Posted August 1, 2008 awesome! thanks for that link, i didnt know the manual existed. that cleared it up for me now. thanks again. derek Link to comment https://forums.phpfreaks.com/topic/117749-solved-array_intersec_assoc-question-about-what-it-does/#findComment-605667 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.