WP_CLI::get_config()
Get values of global configuration parameters.
Provides access to --path=<path>, --url=<url>, and other values of the global configuration parameters.
WP_CLI::log( 'The --url=<url> value is: ' . WP_CLI::get_config( 'url' ) );
Метод класса: WP_CLI{}
Хуков нет.
Возвращает
Разное
.
Использование
$result = WP_CLI::get_config( $key );
- $key(строка)
- Get value for a specific global configuration parameter.
По умолчанию: null
Код WP_CLI::get_config() WP CLI::get config WP-CLI 2.8.0-alpha
public static function get_config( $key = null ) { if ( null === $key ) { return self::get_runner()->config; } if ( ! isset( self::get_runner()->config[ $key ] ) ) { self::warning( "Unknown config option '$key'." ); return null; } return self::get_runner()->config[ $key ]; }