You appear to be a bot. Output may be restricted
Description
Usage
get_echo( $callable, $args );
Parameters
- $callable
- ( mixed ) required –
- $args
- ( mixed ) optional –
Returns
void
Source
File name: wordpress-develop-tests/phpunit/includes/utils.php
Lines:
1 to 5 of 5
function get_echo( $callable, $args = array() ) { ob_start(); call_user_func_array( $callable, $args ); return ob_get_clean(); }