Skip to content

ericjgagnon/Dumper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Note: project isn't complete use at your own risk

README

A simple HTML variable dumper for PHP >= 5.3.

Usage

    use Wicked\Dumper\Dumper;

    ...

    $array = [1, true, 0.8, "String"];

    $dumper = new Dumper();

    $dumper->dump($array);

Output

(Array : length 4) [[0] => integer 1[1] => boolean true[2] => double 0.8[3] => string [length : 6] String]

TODO

  • Extensive tests on Dumper
  • Generate better styles
  • Visibility highlighting for object properties
  • Comments and documentation
  • I'm sure that I'm forgetting something

About

PHP HTML variable dumper

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published