adudjandaniel / php_dump
Beautify variable dumping in php
Installs: 58
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/adudjandaniel/php_dump
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2025-10-25 06:43:40 UTC
README
Being used to the fancy dump Adobe Coldfusion uses, I can hardly make sense of the raw dumping in php; I need something similar.
Usage:
- composer require adudjandaniel/php_dump
- require_once /path/to/autoload.php (Add to php scripts)
- use namespace PhpDump\Dump
- Dump::php_dump(variable_name [, label])
Functionality (so far):
- Dumping
- basic types (integer, boolean, float, string)
- indexed arrays
- associative array
- Toggling display of values.
Click on the key of the value to toggle it's display.
The method php_dump() takes two parameters:
- variable name (required)
- label (optional)

