PHP code example of aeforge / dumper

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

    

aeforge / dumper example snippets


use Aeforge\Dumper\Dumper;

// This will make it so the script will not exit after dumping the data
$dumper = new Dumper($_SERVER);
$dumper->dump();

use Aeforge\Dumper\Dumper;

// This will make it so the script will exit after dumping data
$dumper = new Dumper($_SERVER);
$dumper->dumpAndDie();

  dd() //Will dump and die
  dump() //Will dump only without exiting