Not really sure what you're looking for, but you would call them at some point where you want to gather debug data. At the simplest, if you just want to echo it out to the current page:
if(something_went_wrong())
{
echo "<pre>";
debug_print_backtrace();
echo "</pre>";
}