Exemple #1
0
 /**
  * Dump information about a variable
  *
  * @param mixed $data,...
  * @access public
  * @static
  */
 public static function dump($data, $second = '')
 {
     if (Krumo::is_cli()) {
         print_r($data);
         exit;
     }
     static $setheader = null;
     if (empty($setheader) && ($setheader = 1)) {
         try {
             @header("Content-type: text/html; charset=utf-8");
         } catch (Exception $e) {
         }
     }
     // If we're capturing call dump() with just data and capture the output
     if ($second === KRUMO_RETURN) {
         ob_start();
         Krumo::dump($data);
         $str = ob_get_clean();
         return $str;
         // If we were given expand all, set the global variable
     } elseif ($second === KRUMO_EXPAND_ALL) {
         self::$expand_all = true;
         Krumo::dump($data);
         return true;
     }
     $clearObjectRecursionProtection = false;
     if (self::$objectRecursionProtection === NULL) {
         self::$objectRecursionProtection = array();
         $clearObjectRecursionProtection = true;
     }
     // disabled
     if (!Krumo::_debug()) {
         return false;
     }
     // more arguments
     if (func_num_args() > 1) {
         $_ = func_get_args();
         foreach ($_ as $d) {
             Krumo::dump($d);
         }
         return;
     }
     // find caller
     $_ = debug_backtrace();
     while ($d = array_pop($_)) {
         $callback = self::$lineNumberTestCallback;
         $function = strToLower($d['function']);
         if (in_array($function, array("krumo", "k", "kd")) || strToLower(@$d['class']) == 'krumo' || is_callable($callback) && $callback($d)) {
             break;
         }
     }
     $showVersion = Krumo::_config('display', 'show_version', TRUE);
     $showCallInfo = Krumo::_config('display', 'show_call_info', TRUE);
     $krumoUrl = 'https://github.com/oodle/krumo';
     //////////////////////
     // Start HTML header//
     //////////////////////
     print "<div class=\"krumo-root\">\n";
     print "\t<ul class=\"krumo-node krumo-first\">\n";
     // The actual item itself
     ob_start();
     print Krumo::_dump($data);
     print str_replace(ROOT, '~', ob_get_clean());
     if ($showVersion || $showCallInfo) {
         print "\t\t<li class=\"krumo-footnote\" onDblClick=\"toggle_expand_all();\">\n";
         if ($showCallInfo && isset($d['file']) && $d['file']) {
             print "<span class=\"krumo-call\" style=\"white-space:nowrap;\">";
             print "Called from <strong><code>" . str_replace(ROOT, '~', $d['file']) . "</code></strong>, ";
             print "line <strong><code>" . $d['line'] . "</code></strong></span>";
             print "<span class=\"krumo-call\"> { Time: " . number_format(microtime(true) - LARAVEL_START, 3) . 's }</span>';
         }
         if ($showVersion && 0) {
             $version = krumo::version();
             print "<span class=\"krumo-version\" style=\"white-space:nowrap;\">\n";
             print "<strong class=\"krumo-version-number\">Krumo version {$version}</strong> | <a href=\"{$krumoUrl}\" target=\"_blank\">{$krumoUrl}</a>\n";
             print "</span>\n";
         }
         print "</li>";
     }
     print "</ul></div>\n";
     print "<!-- Krumo - HTML -->\n\n";
     // Output the CSS and JavaScript AFTER the HTML
     krumo::_css();
     ////////////////////
     // End HTML header//
     ////////////////////
     // flee the hive
     $_recursion_marker = Krumo::_marker();
     if ($hive =& Krumo::_hive($dummy)) {
         foreach ($hive as $i => $bee) {
             if (is_object($bee)) {
                 if (($hash = spl_object_hash($bee)) && isset(self::$objectRecursionProtection[$hash])) {
                     unset(self::$objectRecursionProtection[$hash]);
                 }
             } elseif (isset($hive[$i]->{$_recursion_marker})) {
                 unset($hive[$i][$_recursion_marker]);
             }
         }
     }
     if ($clearObjectRecursionProtection) {
         self::$objectRecursionProtection = NULL;
     }
     // End of dump()
 }