示例#1
0
 public static function d()
 {
     $args = func_get_args();
     $die = end($args) === 1 && array_pop($args);
     echo '<pre>';
     foreach ($args as $v) {
         $output = print_r($v, true);
         SJB_HelperFunctions::hideStructureText('TemplateProcessor', $output);
         echo $output . "\n";
     }
     echo '</pre>';
     if ($die) {
         die;
     }
 }