https://github.com/paulloft/phpdumpher
Аdvanced PHP variable dumper
https://github.com/paulloft/phpdumpher
composer php phputil
Last synced: 5 months ago
JSON representation
Аdvanced PHP variable dumper
- Host: GitHub
- URL: https://github.com/paulloft/phpdumpher
- Owner: paulloft
- License: mit
- Created: 2016-03-26T08:01:22.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-12-27T19:53:51.000Z (over 4 years ago)
- Last Synced: 2025-08-03T03:03:34.156Z (11 months ago)
- Topics: composer, php, phputil
- Language: PHP
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# phpdumpher
DumPHPer is an advanced PHP variable dumper, that shows detailed info in a simple way.
### Usages
```php
\Utils\Dumphper::dump($data);
```
### Extended functionality
```php
function d() {
$args = func_get_args();
foreach ($args as $a) {
\Utils\Dumphper::dump($a);
}
exit();
}
```
Installation
------------
*Requres PHP 7.3 or higher*
PHPdumphper is [PSR-4](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader.md) compliant and can be installed using [composer](//getcomposer.org). Just add `paulloft/dumphper` to your composer.json.
```json
"require": {
"paulloft/dumphper": "*"
}
```
or run in shell
```shell
composer require paulloft/dumphper
```
### Example of output
