WP_CLI::halt()
Halt script execution with a specific return code.
Permits script execution to be overloaded by WP_CLI::runcommand()
Метод класса: WP_CLI{}
Хуков нет.
Возвращает
never
.
Использование
$result = WP_CLI::halt( $return_code );
- $return_code(int) (обязательный)
- -
Код WP_CLI::halt() WP CLI::halt WP-CLI 2.8.0-alpha
public static function halt( $return_code ) { if ( self::$capture_exit ) { throw new ExitException( null, $return_code ); } exit( $return_code ); }