wpseek.com
A WordPress-centric search engine for devs and theme authors



array_key_first › WordPress Function

Since5.9.0
Deprecatedn/a
array_key_first ( $array )
Parameters:
  • (array) $array An array.
    Required: Yes
Returns:
  • (string|int|null) The first key of array if the array is not empty; `null` otherwise.
Defined at:
Codex:

Polyfill for array_key_first() function added in PHP 7.3.

Get the first key of the given array without affecting the internal array pointer.


Source

function array_key_first( array $array ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		foreach ( $array as $key => $value ) {
			return $key;
		}
	}
}