debugConsole is a powerful debug system for PHP that maintains by Andreas Demmer. It's written completely in PHP and work as a class, not like Xdebug, which is an extension to PHP. With debugConsole, error handling and variable change tracking is taken care of.

Editor Comment:
If the native variable dump function in debugConsole are as good as dBug
, this might be the tool of choice for all developers.
Dump Method is a variable dumping system like dBug, but instead dump PHP variables, it dump variables from JavaScript. Because dBug and Dump Method are both from one origin, ColdFusion
Here is how it looks like
| object | |||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| name [string] | value | ||||||||||||||||||||||||||||||||||||||||||||||||||
| key [string] | value | ||||||||||||||||||||||||||||||||||||||||||||||||||
| num [number] | 3254325 | ||||||||||||||||||||||||||||||||||||||||||||||||||
| obj [object] |
|
||||||||||||||||||||||||||||||||||||||||||||||||||
| arr [array] |
|
||||||||||||||||||||||||||||||||||||||||||||||||||
| hash [array] |
|
||||||||||||||||||||||||||||||||||||||||||||||||||
| greetFunc [function] |
|
||||||||||||||||||||||||||||||||||||||||||||||||||
Editor Comment:
So now the most used Client and Server script both got the best out of ColdFusion, great...
dBug is a class for PHP programmers to output variables, object and even XML in a better looking way than var_dump. It uses great CSS and JavaScript to make the output easier to access, like expand an array. Here is an example of the output:
include("dBug.php"); $variable = array( "first"=>"1", "second", "third"=>array( "inner third 1", "inner third 2"=>"yeah"), "fourth"); new dBug($variable1);
| array | |||||||
| first | 1 | ||||||
| 0 | second | ||||||
| third |
| ||||||
| 1 | fourth | ||||||
Editor Comment:
I was using array2table and var_dump, print_r before I thought about making my own. Then I got to know dBug, so I know I don't have to make my own that will cost me over 20 hours.
Recent comments
2 hours 35 min ago
2 days 23 hours ago
3 days 8 hours ago
1 week 20 hours ago
1 week 2 days ago
1 week 2 days ago
1 week 3 days ago
2 weeks 1 day ago
2 weeks 1 day ago
2 weeks 4 days ago