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

key_exists() public static method

Alias of array_key_exists.
public static key_exists ( IntStringKey key, PhpArray array ) : bool
key IntStringKey
array Pchp.Core.PhpArray
return bool
        public static bool key_exists(IntStringKey key, PhpArray array) => array_key_exists(key, array);