Good time!
After installing wampserver 3 all var_dump began to draw the path to the file:
$a = array('Vasya','Petya','Third paragraph');
var_dump($a);
That gives me:

I'm not a guru any configs on this myself and have not found where to dig.
Not very convenient, especially when you use Smarty, and if you var_dump(1) draw something like:
D:\site\temp\f5a10fe3e72768fb0b7e9b59dad265fa4269fa44_0.file._header.tpl.php:101:int 1
How can I remove this path?
PS: or at least stylize the line with the path (line wrapping, font is smaller and the color darker).
Solution:
Added the xdebug settings this line:
xdebug.overload_var_dump=1
Got everything I wanted =)
But by the way, not the fact that this configuration is used. - Marcus.Wolff commented on July 9th 19 at 11:10
Arises the question: where is all this styling?) - Matteo.Kuhn commented on July 9th 19 at 11:13
Without xdebug Var_dump only gives the contents of the variable.
With xdebug produces output in a variety of colors and adds the path to the file. The colors in my set directly in the output by using the style attribute. And then you can not do anything except to dig in the settings xdebug. About the path to the file, you can either try to dig the config, or try an older version. From here, for example ways to file no. Config will be able to throw tomorrow. - Marcus.Wolff commented on July 9th 19 at 11:16
Thanks for the help!
Found settings, helped in the xdebug settings the following line:
xdebug.overload_var_dump=1
Got everything I wanted =) - Matteo.Kuhn commented on July 9th 19 at 11:19