为什么我的 xdebug 没有样式?
所以我在本地版本的 PHP 上启用了 Xdebug,我想知道是否有人可以回答我为什么输出没有以默认方式设置样式(橙色背景、表格设计)。我可以看到堆栈跟踪和所有内容,但它只是文本,没有消息周围的 html 包装器。
如果您有任何建议可以提供,谢谢!
顺便说一句,这是在我的 php.ini 文件中:
zend_extension="C:\php\ext\php_xdebug.dll"
xdebug.show_local_vars=On
xdebug.dump.SERVER=*
xdebug.dump_globals=On
So I have Xdebug enabled on my local version of PHP, and I'm wondering if anyone can give me an answer as to why the output isn't styled in the default way (with the orange background, table design). I can see the stack trace and everything, but it's all just text, no html wrapper around the message.
Thanks if you have any advice to give!
BTW, this is in my php.ini file:
zend_extension="C:\php\ext\php_xdebug.dll"
xdebug.show_local_vars=On
xdebug.dump.SERVER=*
xdebug.dump_globals=On
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保
了:
html_errors = On
在
php.ini
中设置Make sure to have:
html_errors = On
set in
php.ini
正如我在重复问题中回答的那样:
对于Xdebug 3 您需要在 php.ini 中启用开发模式:
As I have answered in duplicate question:
For Xdebug 3 you need to enable develop mode in your php.ini: