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



wp_is_numeric_array › WordPress Function

Seit4.4.0
Veraltetn/v
wp_is_numeric_array ( $data )
Parameter:
  • (mixed) $data Variable to check.
    Erforderlich: Ja
Gibt zurück:
  • (bool) Whether the variable is a list.
Definiert in:
Codex:

Determines if the variable is a numeric-indexed array.



Quellcode

function wp_is_numeric_array( $data ) {
	if ( ! is_array( $data ) ) {
		return false;
	}

	$keys        = array_keys( $data );
	$string_keys = array_filter( $keys, 'is_string' );

	return count( $string_keys ) === 0;
}