https://github.com/initphp/vardumper
https://github.com/initphp/vardumper
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/initphp/vardumper
- Owner: InitPHP
- License: mit
- Created: 2022-09-16T11:36:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-20T14:22:06.000Z (over 3 years ago)
- Last Synced: 2025-01-26T03:13:46.237Z (about 1 year ago)
- Language: PHP
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# InitPHP VarDumper
## Installation
```
composer require initphp/var-dumper
```
or included `src/Init.php`.
## Usage
### `dump()`
```php
$obj = new stdClass;
$obj->pi = 3.14;
dump($obj);
```
### `dd()`
Dump and die
```php
$var = 'xml';
dd($var);
```
## TO-DO
- [ ] Coloring of codes will be made more understandable.
## License
Copyright © 2022 [MIT License](./LICENSE)