A little tool to help with debugging by writing a `var_dump` like message unobtrusively into a collapsible panel at the bottom of a page.
Dumper works right out the box. Once installed via composer you can use it straight away to dump your objects using either method; dump or assert on the \Inane\Dumper\Dumper object.
The dump method is the default method and logs what it is given. Where as the assert has a test for its first parameter and only logs if the test fails (falsy).
\Inane\Dumper\Dumper::dump($data, 'After marge process');
\Inane\Dumper\Dumper::assert(!$data->error, $data, 'After marge process'); // (1)-
Logs if error is true
Dumper registers the shortcut functions dd and da that work just like calling \Inane\Dumper\Dumper::dump() or \Inane\Dumper\Dumper::assert().
|
Warning
|
Dumper does not overwrite existing functions. So if either dd or da are already taken, Dumper will skip them. See Dumper: Aliases Dumper: Aliases on creating your own custom alias functions.
|
dd($data, 'After marge process');
da(!$data->error, $data, 'After marge process'); // (1)-
Logs if error is true
@since 1.17.0
This is an alias for Dumper::dump that is pre-configured to use Type::Todo.
Esencially it’s a normal dmup but with some styling to make it standout more and can be used to add todo items to your code.
Todos do not show by default and need to be added to Dumper::$additionalTypes to be seen. This is so that they do not show up while debugging and distract you.
// enable todo output
Dumper::$additionalTypes[] = Type::Todo;
Dumper::todo($callback, 'Add error handling');Some more or less helpful hints and tips regarding usage of Dumper.
Creating a custom global function as an alias to \Inane\Dumper\Dumper::dump method.
|
Tip
|
ext-runkit7 required to register global functions. Without it the function is stored in a variable instead. |
\Inane\Dumper\Dumper::dumper('kickIt', 'shErr');
// you can now use your `kickIt` function the same as the `dump` method.
kickIt($data, 'Data after...'); // (1)
// what about `shErr`?
shErr(!$data->error, $data, 'Data after...'); // (2)
// without *ext-runkit7*. Note the $kickIt is a variable.
$kickIt($data, 'Data after...');
$shErr(!$data->error, $data, 'Data after...'); // (2)-
The first parameter of the dumper method creates
dumpaliases akin to theddfunction. -
The second parameter sets the alias for
assertakin toda.
That’s how easy it is to create a custom global shortcut function for Dumper.
Dumper has a few static public properties you can use to change some of the default behaviours.
Dumper starts enabled but should you wish all Dumpers related content gone. Disable it here.
default: true
\Inane\Dumper\Dumper::$enabled = false;Write dumps last. Just before php terminates. Set to false to have dumps inserted as the occur at runtime.
|
Tip
|
This is mostly useful when running console code. |
default: true
// Somewhere before using Dumper, or even after for a section of code and then turn buffer on again.
\Inane\Dumper\Dumper::$bufferOutput = false;
// some code loop probably
\Inane\Dumper\Dumper::$bufferOutput = true;By default Dumper uses its own variable parser to generate the output. Here you can tell Dumper to use var_export instead.
default: false
// set value to true
\Inane\Dumper\Dumper::$useVarExport = true;Set the colour theme dumper uses. The default is to use the colours already set in your php.ini file.
default: \Inane\Stdlib\Highlight::CURRENT
-
Available colours in
\Inane\Stdlib\Highlight-
CURRENT
-
DEFAULT
-
PHP2
-
HTML
-
// set colour theme
\Inane\Dumper\Dumper::$highlight = \Inane\Stdlib\Highlight::PHP2;|
Note
|
Since: 1.8.0 |
Controls the initial expanded state of the Dumper panel.
default: false
// Create the Dumper panel expanded
\Inane\Dumper\Dumper::$expanded = true;|
Note
|
Since: 1.14.0 |
Allows setting custom cli colours or disabling cli colours completely.
[
'reset' => "\033[0m", # console default
'dumper' => "\033[35m", # magenta
'label' => "\033[34m", # blue
'file' => "\033[97m", # while
'line' => "\033[31m", # red
'divider' => "\033[33m", # yellow
];// Remove cli colouring
\Inane\Dumper\Dumper::setConsoleColours(false);
// Setting default colours
\Inane\Dumper\Dumper::setConsoleColours([]);
// Remove cli colouring
\Inane\Dumper\Dumper::setConsoleColours(false);
// creating a colour using Pencil from `inanepain/cli`
$label = new \Inane\Cli\Pencil(colour: \Inane\Cli\Pencil\Colour::Green, background: \Inane\Cli\Pencil\Colour::Red, style: \Inane\Cli\Pencil\Style::SlowBlink);
// Then set colours for **file**, **label** and **reset**
\Inane\Dumper\Dumper::setConsoleColours([
'file' => "\033[36m",
'label' => "$label",
'reset' => "\033[0m",
]);|
Note
|
Since: 1.16.0 |
Option to hide the support message to install runkit7 if not found.
There are two methods to disable this message: via class static property or via a global constant.
\Inane\Dumper\Dumper::$showRunkit7SupportMessage = false;define('INANE_DUMPER_HIDE_RUNKIT7', true);Customising Dumpers look and feel.
This is done by setting the values of the following css variables and a few php class properties.
Adjust the font size used by the Dumper panel.
-
variable:
--dumper-font-size -
default:
smaller
Adjust the maximum height allowed of the Dumper panel when opened.
-
variable:
--dumper-max-height -
default:
80vh
Switching Dumpers theme is done in the php by changing a static property on the Dumper object.
Set the colour theme dumper uses. The default is to use the colours already set in your php.ini file.
default: \Inane\Stdlib\Highlight::CURRENT
-
Available colours in
\Inane\Stdlib\Highlight-
CURRENT
-
DEFAULT
-
PHP2
-
HTML
-
// set colour theme
\Inane\Dumper\Dumper::$highlight = \Inane\Stdlib\Highlight::PHP2;You can use the \Inane\Dumper\Silence attribute to silence dumps, silence a specified number of dumps, only show a specified number of dumps then go silent, per class, method or function. The Silence attribute also allows you to set Silence’s initial state and then set a counter after which the state will toggle.
|
Note
|
If a class is silenced all functions are silenced regardless of their individual settings. |
use Inane\Dumper\Silence as DumperSilence;
#[DumperSilence()]
function doFirst(): void {
echo 'hello', PHP_EOL;
dd(__FUNCTION__, 'one');
dd(__FUNCTION__, 'two');
}
#[DumperSilence(false)]
function doSecond(): void {
echo 'hello', PHP_EOL;
dd(__FUNCTION__, 'one');
dd(__FUNCTION__, 'two');
}
doFirst(); // (1)
// hello
doSecond(); // (2)
// hello
// doSecond, one
// doSecond, two-
This only outputs the
echo. The `dd’s are ignored. -
Here the
echoandddoutput is displayed.
This feature of Silence lets you either enable or disable dumping after a specified number of dump requests have been made. This lets you log only a few items when iterating over a large collection.
If you specify a limit, Silence’s second parameter, the Silence instance will toggle its value after it has received that many check requests. i.e. Silent becomes verbose and vice versa.
|
Note
|
The toggle only happens once. NOT every time the limit is reached. |
|
Tip
|
The is an issue logged to pass an array in place of an limit that sets when to toggle and how long the toggle should remain active. |
use Inane\Dumper\Silence as DumperSilence;
#[DumperSilence(false, 1)]
function doFirst(): void {
echo 'hello', PHP_EOL;
dd(__FUNCTION__, 'one');
dd(__FUNCTION__, 'two');
}
#[DumperSilence(true, 1)]
function doSecond(): void {
echo 'hello', PHP_EOL;
dd(__FUNCTION__, 'one');
dd(__FUNCTION__, 'two');
}
doFirst(); // (1)
// hello
// doFirst, two
doSecond(); // (2)
// hello
// doSecond, one-
Now we have the
echoand the value from the firstddrequest. Silence toggled false to true after 1 request so the secondddrequest was ignored. -
This is the reverse of the first. Here only the first
ddrequest is shown.
Actually geeky stuff would be a better way to describe this section. By default Silence checks are not shown in the Dumper panel but this can be enabled if you want to figure out why your toggles are not doing what you expect them to do.
To enable this this is one simple step, add Type::Silence to the Dumper::$additionalTypes array.
Dumper::$additionalTypes[] = Type::Silence; // (1)
// code
Dumper::$additionalTypes = []; // (2)-
future Silence checks will be shown in the Dumper panel.
-
and Silence checks after this will no longer show in the Dumper panel.
You can customise the Silence check logs per Silence instance to make them stand out from the rest by giving it a custom label and colour.
#[Silence(on: true, config: [
'label' => 'Do Test This', // (1)
'colour' => 'purple', // (2)
])]
function doThis(): void {
dd(null, 'Dump nothing important'); // (3)
}
doThis(); // (4)
doThis(); // (4)
doThis(); // (4)-
set custom label to appear in Dumper panel.
-
set custom colour for log entry in Dumper panel.
-
this will not be show due to Silence
-
a purple entry labelled Do Test This will be added every time this function is called
Dumper has a few more tricks up its sleve. Here are some of the more useful ones.
You can set Dumper as the Exception Handler. This will catch any uncaught exceptions and dump them. This is useful for debugging in production environments. The method provided is a simple ease of use function since the same effect can be achived quiet simple in php.
\Inane\Dumper\Dumper::setExceptionHandler();
// The same thing can be done usding
set_exception_handler(['Inane\Dumper\Dumper', 'dump']);