Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
dobrik committed Jan 22, 2020
2 parents bc4e235 + e2ad9c0 commit 910d603
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,27 @@
- file where dump called
- dumped variable or object detailed information
- parent class of object
- class public methods
- class public methods with arguments

_Basically uses Symfony var-dumper_ https://github.com/symfony/var-dumper


# Using

For dump any variable use short function **ff**.
For dump any variable or few variables use short function **ff**.

```php
ff($your_variable);
ff($var);
```

If you need dump your variable without clear output buffer and terminating program execute add second parameter **false**.
And you'll see something like this
![Scheme](https://github.com/dobrik/extended_dumper/raw/master/media/img_1.jpg)

Or

```php
ff($your_variable, false);
```
ff($var1, $var2);
```

And you'll see something like this
In this case your variables will be dumped as array and methods don't be shown.

![Scheme](https://github.com/dobrik/extended_dumper/raw/master/media/img_1.jpg)
Binary file modified media/img_1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 910d603

Please sign in to comment.