PHP code example of paulloft / dumphper

1. Go to this page and download the library: Download paulloft/dumphper 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/ */

    

paulloft / dumphper example snippets


\Utils\Dumphper::dump($data);

function d() {
    $args = func_get_args();
    foreach ($args as $a) {
        \Utils\Dumphper::dump($a);
    }
    exit();
}