var_dump 与 XAMPP 或新的 EasyPhP 一起着色效果很好,但没有列出所有内容,如何配置它?
var_dump 与 XAMPP 或新的 EasyPhP 一起着色效果很好,但没有列出所有内容,如何配置它?比如数组中有一个数组,它的列为:
array
...
我也想看看!有想法吗?
var_dump is good colored with XAMPP or new EasyPhP, but doensnt list everything, how to configure it? For example there is an array in array, and its listed as:
array
...
I want to see it too! Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的主机上可能启用了 xdebug。如果没有,您可以安装它。
使用 xdebug,您可以配置 var_dump 的输出。
You might have xdebug enabled on your host. If not, you can install it.
With xdebug you can configure the output of var_dump.
要以无限深度显示所有递归内容,您可以使用 xdebug.var_display_max_depth 变量配置 EasyPHP 的 Xdebug 模块设置为负值 (-1)。
For displaying all recursive content with inifinite depth you can configure your Xdebug module of EasyPHP with xdebug.var_display_max_depth variable set to a negative value (-1).