PHP code example of hexmakina / debugger

1. Go to this page and download the library: Download hexmakina/debugger library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

hexmakina / debugger example snippets


vd($var, $label);  // visual dump
dd($var, $label);  // visual dump AND die();
vdt($var, $label); // visual dump with full trace
ddt($var, $label); // visual dump with full trace AND die();
vd($foo);

**************
[bootstrap.php            16]       ?::vd(1627941733.4195)
string(4) "bar"

******* (a label for easy spotting) *******
[bootstrap.php            16]       ?::vd(1627942158.3575)
string(3) "bar"

**************
[index.php                 2]          ?::03)
string(4) "bar"