我最近将PHP升级到7.2。我丢了彩色的var_dump。所以,我读了这篇文章:
How to get xdebug var_dump to show full object/array
并按照以下说明安装xdebug:
http://www.dieuwe.com/blog/xdebug-ubuntu-1604-php7
并将此行添加到我的php.ini中:
xdebug.overload_var_dump=2
根据
并且var_dump中仍然没有颜色。我不知道为什么它不起作用?
我的Linux版本:4.9.120-c9#1 SMP周三8月15日22:48:26 UTC 2018 x86_64 x86_64 x86_64 GNU / Linux
我的PHP版本: PHP版本7.2.9-1 + ubuntu14.04.1 + deb.sury.org + 1
答案 0 :(得分:0)
答案在Xdebug FAQ上:
问:Xdebug不格式化输出。
A:确保在php.ini中将PHP的html_errors设置为1
在您的php.ini中添加或更新html_errors
行:
html_errors = On