visual studio code (vsc)中查看 php 数组的全部元素
Posted 一菲聪天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了visual studio code (vsc)中查看 php 数组的全部元素相关的知识,希望对你有一定的参考价值。
在 vsc 调试 php 时,如果数组元素过多,只能查看前面 30个左右的元素,
如果需要看更多的元素,可以配置 xDebugSettings
修改项目中的 .vscode/launch.json 文件:
添加上如下内容:
"xdebugSettings": {
"max_children": 128,
"max_data": 512,
"max_depth": 3
}
如下图:
参考:https://github.com/felixfbecker/vscode-php-debug/issues/166
以上是关于visual studio code (vsc)中查看 php 数组的全部元素的主要内容,如果未能解决你的问题,请参考以下文章
尝试(和失败)在 VSC 终端中使用 tsc 在 Visual Studio Code 中运行(成功安装)TypeScript 编译器
Visual Studio Code-GO tasks 设置 (实现在vsc下直接编译输出的功能)