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 Quote Link to comment 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 Quote Link to comment 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.