04/11
2016
Wallogit.com
2017 © Pedro Peláez
DumPHPer is an advanced PHP variable dumper, that shows detailed info in a simple way..
DumPHPer is an advanced PHP variable dumper, that shows detailed info in a simple way., (*1)
\Utils\Dumphper::dump($data);
function d() {
$args = func_get_args();
foreach ($args as $a) {
\Utils\Dumphper::dump($a);
}
exit();
}
Requres PHP 7.3 or higher, (*2)
PHPdumphper is PSR-4 compliant and can be installed using composer. Just add paulloft/dumphper to your composer.json., (*3)
"require": {
"paulloft/dumphper": "*"
}
or run in shell, (*4)
composer require paulloft/dumphper
, (*5)