Jump to content

[SOLVED] array_intersec_assoc question, about what it does


silverglade

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.