Definition

print_k($var)
yellow/yellow.module, line 543

Description

Ken's debug helper function

Code

function print_k($var) {
  $output = '<pre>';
  $output .= print_r($var, TRUE);
  $output .= '</pre>';
  return $output;
}