HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
VarDumper.php
Go to the documentation of this file.
1 <?php
2 class VarDumper extends CVarDumper {
11  public static function dump($var,$depth=10,$highlight=true){
12  $debug = debug_backtrace();
13  echo "<br>" . $debug[0]['file'] . ':' . $debug[0]['line'] . "<br>" . self::dumpAsString($var,$depth,$highlight);
14  }
15 }