composer-data/easy-dump

Dumper var_dump modifier

dev-master 2016-10-28 09:12 UTC

This package is not auto-updated.

Last update: 2019-03-17 08:35:56 UTC


README

EasyDump is an easy, sexy and lightweight way to display your PHP variable when developing. It is a nice alternative to `var_dump`. It was partly inspired by (but not based on) Kint, but is way more simple.

Requirement

EasuDump depends on SplFileObject, which needs PHP 5.1.0 or higher.

Use

Dump variables

You only need the `easydump.php` file. Just include it in your code:

require_once( 'easydump.php');

Then call the EasyDump functions:

$var = 'test';
EasyDump::debug($var);     //just dump
EasyDump::debugExit($var); //exit code right after the dump

Or you can use the shortcut alias:

d($var);
de($var);

See `index.php` for examples. The result would look like this:

Screenshot of EasyDump

Settings

Just change the values of the array called $config at the top of `easydump.php` :

  • 
    
  • 
    
  • 
    
  • 
    
  • 
    

Licence

EasyDump was thought and written to be in the public domain. This means you can do whatever you want with it without any restriction. If you need a public license, consider it as distributed under the WTFPL.

The only exception to this rule is the default color theme: it is called Earthsong and was originally created by daylerees and distributed under the MIT License.

Still, if you want to do a link to this page, it would be really appreciated :)