#(WordPress Plugin) Wrapper for Kint PHP Debugger - a modern and powerful PHP debugging helper
Kint is a a modern and powerful PHP debugging helper, which requires zero-setup and replaces var_dump(), print_r() and debug_backtrace(). This plugin is a wrapper for Kint.
Contributors: Tonya
Requires: WordPress 3.5
Tested up to: WordPress 4.2.3
This WordPress plugin is a wrapper for the Kint PHP Debugger utility. Now instead of using var_dump() or print_r(), you simply use d() with zero, nadda, no formatting required.
Use this tool when you are debugging your website, in place of var_dump(), print_r() and debug_backtrace().
Some handy tools just for the PHP Developer:
Use:
d( $var );
to replace the pre/var_dump
echo'<pre>';
var_dump( $var );
echo'</p>';
Use:
ddd( $var );
to replace the pre/var_dump
echo'<pre>';
var_dump( $var );
echo'</p>';
die();
See Kint - Handy Tools for details.