Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.3 KB

README.md

File metadata and controls

40 lines (28 loc) · 1.3 KB

#(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

Features

Screenshot

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.