A print_r() or var_dump() replacement that expands the variable into valid PHP code.

Occasionally you want to expand an object or array variable to see what it contains. Typically we would use a variation of print_r() or var_dump() to do this, but the down side is there is no way simple way… Read More