WP_CLI::out()public staticWP-CLI 1.0

back-compat

Method of the class: WP_CLI{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WP_CLI::out( $str );
$str (required)
-

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

public static function out( $str ) {
	fwrite( STDOUT, $str );
}