1PHP function array_intersect_assoc(array $array1, array $array2, array $_ = null) string[]
2--------------------------------------------------------------------------------------
3Computes the intersection of arrays with additional index check.
4
5Parameters:
6array--$array1--The array with main values to check.
7array--$array2--An array to compare values against.
8array--$_--[optional]
9Returns:an associative array containing all the values in array1 that are present in all of the arguments.