PHP code example of iextra / dumper

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

    

iextra / dumper example snippets

 
    
    
 
    
    



Extra\Dump::toPopup($data, 'label'); 

Extra\Dump::p($data); //Short call



Extra\Dump::toFile($data, 'fileName', 'label'); 

Extra\Dump::f($data); //Short call



Extra\Dump::toConsole($data, 'label'); 

Extra\Dump::c($data); //Short call