An open API service indexing awesome lists of open source software.

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

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
![Garden](https://raw.githubusercontent.com/paulloft/phpdumpher/master/example.png)