简体   繁体   中英

Xdebug in Sublime Text 3: how to see the sub-array content in the Xdebug context

When I put a break point with Xdebug I can see the content of the current variables of the environment. Some of these variables are an array with another array inside. I don't know how to see the content of that sub-array:

我看不到的子数组的屏幕截图

Is it possible? How?

Add the following to the user configuration file of the Xdebug plugin ( Preferences > Package Settings > Xdebug > Settings - User ):

{
    "max_depth": 2
}

That's for one sub-array. If you want a sub-sub-array just type: "max_depth": 3 ...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM