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

array_diff_assoc() public static method

Computes the difference of arrays.
Keys are preserved. Entries are considered to be equal iff they has the same keys and values according to string method comparison (see EntryComparer and PhpStringComparer).
is a null reference. is a null reference or an empty array.
public static array_diff_assoc ( Context ctx, PhpArray array ) : PhpArray
ctx Pchp.Core.Context Current runtime context.
array Pchp.Core.PhpArray The array from which to take items away.
return Pchp.Core.PhpArray
        public static PhpArray array_diff_assoc(Context ctx, PhpArray array, params PhpArray[] arrays)
        {
            return SetOperation(SetOperations.Difference, array, arrays,
                new EntryComparer(new PhpStringComparer(ctx), false, new PhpStringComparer(ctx), false));
        }