Pchp.Library.Arrays.array_intersect_assoc C# (CSharp) Method

array_intersect_assoc() public static method

Computes the intersection of arrays.
public static array_intersect_assoc ( Context ctx, PhpArray array ) : PhpArray
ctx Pchp.Core.Context
array Pchp.Core.PhpArray
return Pchp.Core.PhpArray
        public static PhpArray array_intersect_assoc(Context ctx, PhpArray array, params PhpArray[] arrays)
        {
            return SetOperation(SetOperations.Intersection, array, arrays,
                new EntryComparer(new PhpStringComparer(ctx), false, new PhpStringComparer(ctx), false));
        }