Skip to content
/ dump Public

Debugging tool which displays information about any PHP variable, class or exception.

Notifications You must be signed in to change notification settings

ideatic/dump

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

70 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dump

Debugging tool which displays information about any PHP variable, class or exception.

Inspired in the tool Krumo developed by mrasnika.

Usage

For using Dump, you only need to include the script, and configure it with the URL of the static resources, and, optionally, with the special paths that your application use:

include 'Dump.php';
Dump::config('/url/to/dump-static', array(
    'APP_PATH' => '/home/app/www',
    'SYSTEM_PATH' => '/home/app/src'
  )
);

And then, for dump information about any variable, resource or exception you only need to do:

dump($var)

Features

  • Interactive dump of almost types of variables.
  • Source code viewer with syntax highlighting.
  • Object reflection.
  • String viewer with plain and html mode.
  • Comprehensive analysis of exceptions.
  • Dynamic overlay that floats over top of web page.

Screenshots

About

Debugging tool which displays information about any PHP variable, class or exception.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published