includekrexx
Component type
Categories
Maintenance status
Development status
Component created
Component changed
Overview
kreXX is a php debug tool, which displays debug information about objects and variables in it's own draggable debug output. It started out as a fork of Krumo, but after several refactoring sessions, there is very little left of Krumo.
Usage
Like Krumo, kreXX will be called in the PHP source code.
krexx($myObject);
Most of the time you will use this method. kreXX will analyse the $object and give you detailed information about it:
- Public attributes of the object
- Protected attributes of the object (can be toggled)
- Private attributes of the object (can be toggled)
- Content of the traversable part of the object (can be toggled)
- Result of all configured debugging callbacks (can be configured)
In case the variable is not an object, it will simply display its content.
