WP_CLI::has_config()public staticWP-CLI 1.0

Confirm that a global configuration parameter does exist.

Method of the class: WP_CLI{}

No Hooks.

Return

true|false.

Usage

$result = WP_CLI::has_config( $key );
$key(string) (required)
Config parameter key to check.

WP_CLI::has_config() code WP-CLI 2.8.0-alpha

public static function has_config( $key ) {
	return array_key_exists( $key, self::get_runner()->config );
}