26/11
2016
Wallogit.com
2017 © Pedro Peláez
A simple class to print pretty values in PHP
A simple class to print pretty values in PHP, (*1)
There is one recommended way to install debug via Composer:, (*2)
composer.json file: "require": {
..
"fredericomartini/debug":"0.1.*",
..
}
include_once 'Debug.php';
$var = array(
'value' => array(
'test' => 123
),
'another_value' => '5555'
);
\Fma\Debug::run($var);
Array
(
[value] => Array
(
[test] => 123
)
[another_value] => 5555
)