https://github.com/dragomano/vardumper-for-smf
Working with `dump()` and `dd()` functions in SMF
https://github.com/dragomano/vardumper-for-smf
debug dump php smf-mods
Last synced: 5 months ago
JSON representation
Working with `dump()` and `dd()` functions in SMF
- Host: GitHub
- URL: https://github.com/dragomano/vardumper-for-smf
- Owner: dragomano
- License: mit
- Created: 2021-12-27T08:13:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-03T04:24:58.000Z (8 months ago)
- Last Synced: 2024-12-30T18:07:20.007Z (7 months ago)
- Topics: debug, dump, php, smf-mods
- Language: PHP
- Homepage: https://custom.simplemachines.org/index.php?mod=4302
- Size: 136 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VarDumper for SMF



* **Tested on:** PHP 8.1.31 / MariaDB 11.2.2
* **Languages:** English, Russian## Description
This small mod adds the Symfony [VarDumper component](https://github.com/symfony/var-dumper) to work with `dump()` and `dd()` functions (instead of `var_dump()`).## Examples
```php
$data = [1, 2, 3];
var_dump($data);
```
```php
$data = [1, 2, 3];
dump($data);
```
