Automattic\WooCommerce\Internal

RestApiParameterUtil::is_associative()private staticWC 1.0

Is an array sequential or associative?

Метод класса: RestApiParameterUtil{}

Хуков нет.

Возвращает

true|false. True if the array is associative, false if it's sequential.

Использование

$result = RestApiParameterUtil::is_associative( $the_array );
$the_array(массив) (обязательный)
The array to check.

Код RestApiParameterUtil::is_associative() WC 9.7.1

private static function is_associative( array $the_array ) {
	return array_keys( $the_array ) !== range( 0, count( $the_array ) - 1 );
}