wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



array_key_last › WordPress Function

Seit5.9.0
Veraltetn/v
array_key_last ( $array )
Parameter:
  • (array) $array An array.
    Erforderlich: Ja
Gibt zurück:
  • (string|int|null) The last key of array if the array . is not empty; `null` otherwise.
Definiert in:
Codex:

Polyfill for `array_key_last()` function added in PHP 7.3.

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


Quellcode

function array_key_last( array $array ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.arrayFound
		if ( empty( $array ) ) {
			return null;
		}

		end( $array );

		return key( $array );
	}
}