wpcf7_version_grep()CF7 1.0

Returns array entries that match the given version.

Хуков нет.

Возвращает

Массив|true|false. Array of matched entries. False on failure.

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

wpcf7_version_grep( $version, $input );
$version(строка) (обязательный)
The version to search for.
$input(массив) (обязательный)
Search target array.

Код wpcf7_version_grep() CF7 5.9.3

function wpcf7_version_grep( $version, array $input ) {
	$pattern = '/^' . preg_quote( (string) $version, '/' ) . '(?:\.|$)/';

	return preg_grep( $pattern, $input );
}