library dprint
Debug Print
denismitr/dprint
Debug Print
- Tuesday, July 12, 2016
- by denismitr
- Repository
- 1 Watchers
- 0 Stars
- 7 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 2 Versions
- 0 % Grown
Installation
composer require denismitr/dprint
Usage
$a = "Stringing";
$b = 1234.2344;
$e = new Exception("Testing...");
$arr = ["Rome", "London", "Moscow", "New York"];
dprint($a, $b, $e, $arr);
or, to print and kill, (*1)
ddump($a, $b, $e, $arr);
Works both under CLI and in browser with a and readable convenient theme., (*2)