<?php function dbg($variable = "", $description= 'Value', $table_started= 0) { # WARNING recursive if (!$table_started) echo "<ul type='circle' style='border:1px solid #a0a0a0;padding-bottom:4px;padding-right:4px'>\n<li>{" . getenv("REQUEST_URI") . "} "; echo "<i>$description</i>: "; if (is_array($variable) || is_object($variable)) { if (is_array($variable)) { echo "(array)[" . count($variable) . "]"; } else { echo "<B>(object)</B>[" . count($variable) . "]"; } echo "<ul type='circle' style='border:1px solid #a0a0a0;padding-bottom:4px;padding-right:4px'>\n"; foreach ($variable as $key => $value) { echo "<li>\"{$key}\" => "; dbg($value, '', TRUE); echo "</li>\n"; } echo "</ul>\n"; } else echo "(" . gettype($variable) . ") '{$variable}'\n"; if (!$table_started) echo "</li></ul>\n"; } ?>
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
FirePHPCore | Folder | 0755 |
|
|
.htaccess | File | 31 B | 0644 |
|
Sajax.php | File | 5.52 KB | 0644 |
|
accesscheck.php | File | 87 B | 0644 |
|
debuglib.php | File | 879 B | 0644 |
|
errorlib.php | File | 6.45 KB | 0644 |
|
interfacelib.php | File | 41.66 KB | 0644 |
|
magic_quotes.php | File | 1.3 KB | 0644 |
|
maillib.php | File | 6.35 KB | 0644 |
|
oldphp_vars.php | File | 694 B | 0644 |
|
unregister_globals.php | File | 1018 B | 0644 |
|
userlib.php | File | 48.86 KB | 0644 |
|