Download .zip |
Info | Documentation | View files (7) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2019-08-05 (2 days ago) | Not yet rated by the users | Total: 34 This week: 34 | All time: 9,619 This week: 2 |
Version | License | PHP version | Categories | |||
dump7 1.0.0 | BSD License | 7 | HTML, Language, PHP 7 |
Description | Author | |
This class can generated colored output values of variables to look pretty. |
|
A pretty version of php var_dump. This class displays structured information about one or more expressions that includes its type and value.
_Check out Dump5 for PHP 5+_
You can download the Latest release version as a standalone, alternatively you can use Composer
$ composer require ghostff/dump7
"require": {
"ghostff/dump7": "^1.0"
}
class Foo
{
private $string = 'string';
protected $int = 10;
public $array = [
'foo' => 'bar'
];
protected static $bool = false;
}
$string = 'Foobar';
$array = ['foo', 'bar'];
$int = 327626;
$double = 22.223;
$null = null;
$bool = true;
new Dump(new Foo, $string, $array, $int, $double, $null, $bool, [
'foo' => 'bar',
'bar' => 'foo',
[
'foo' => 'foobar',
'bar_foo',
2 => 'foo',
'foo' => [
'barbar' => 55,
'foofoo' => false,
'foobar' => null,
]
]
]);
new Dump5(1 == '1', 1 === '1');
Replacing predefined colors:
# set($name, [$cgi_color, $cli_color]);
Dump::set('boolean', ['bb02ff', 'purple']);
CGI output:
CLI Posix output:
Windows user who are using command line tools like cmder
can use the Dump::d
method:
Dump::d(new Foo, $string, $array, $int, $double, $null, $bool, [
'foo' => 'bar',
'bar' => 'foo',
[
'foo' => 'foobar',
'bar_foo',
2 => 'foo',
'foo' => [
'barbar' => 55,
'foofoo' => false,
'foobar' => null,
]
]
]);
CLI Windows output:
Files |
File | Role | Description | ||
---|---|---|---|---|
src (1 file) | ||||
cgi.png | Data | Auxiliary data | ||
composer.json | Data | Auxiliary data | ||
LICENSE | Lic. | License text | ||
posix.png | Data | Auxiliary data | ||
posixWin.png | Data | Auxiliary data | ||
README.md | Doc. | Documentation |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.