Function Reference: get_echo

Summary

This function has not been documented yet.

Source Code

function get_echo($callable, $args = array()) {
	ob_start();
	call_user_func_array($callable, $args);
	return ob_get_clean();
}