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

array_diff_key() public static method

Computes the difference of arrays.
Entries are considered to be equal iff keys compared by by string comparison method are the same (see KeyComparer.String).
is a null reference. is a null reference or an empty array.
public static array_diff_key ( 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_key(Context ctx, PhpArray array, params PhpArray[] arrays)
        {
            return SetOperation(SetOperations.Difference, array, arrays, KeyComparer.String(ctx));
        }