You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns nicely formatted string representation of the variable, using [Symfony VarDumper Component](http://symfony.com/doc/current/components/var_dumper/introduction.html) with all of it's benefits:
139
-
140
-
```php
141
-
$array = [
142
-
'a simple string' => 'in an array of 5 elements',
143
-
'a float' => 1.0,
144
-
'an integer' => 1,
145
-
'a boolean' => true,
146
-
'an empty array' => [],
147
-
];
148
-
$dump = get_dump($array);
149
-
150
-
// array:5 [
151
-
// "a simple string" => "in an array of 5 elements"
Returns nicely formatted string representation of the variable, using [Symfony VarDumper Component](http://symfony.com/doc/current/components/var_dumper/introduction.html) with all of it's benefits:
191
+
192
+
```php
193
+
$array = [
194
+
'a simple string' => 'in an array of 5 elements',
195
+
'a float' => 1.0,
196
+
'an integer' => 1,
197
+
'a boolean' => true,
198
+
'an empty array' => [],
199
+
];
200
+
$dump = get_dump($array);
201
+
202
+
// array:5 [
203
+
// "a simple string" => "in an array of 5 elements"
204
+
// "a float" => 1.0
205
+
// "an integer" => 1
206
+
// "a boolean" => true
207
+
// "an empty array" => []
208
+
// ]
209
+
```
210
+
215
211
#### `format_bytes()`
216
212
217
213
Formats bytes into kilobytes, megabytes, gigabytes or terabytes, with specified precision:
0 commit comments