Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Double layered array does show on mouse over. but does not show in Watch #373

Closed
Nander-MultiSafepay opened this issue Sep 11, 2019 · 2 comments

Comments

@Nander-MultiSafepay
Copy link

image

PHP version:
XDebug version: Xdebug v2.7.2, Copyright (c) 2002-2019, by Derick Rethans
Adapter version: 1.13.0

Your launch.json:
"name": "Listen for XDebug on Homestead",
"type": "php",
"request": "launch",
"pathMappings": {
"/home/vagrant/code/": "c:/MSP_PROJECTS/VIS"
},
"port": 9000
XDebug php.ini config:
zend_extension=xdebug.so
xdebug.remote_enable = 1
xdebug.remote_connect_back = 1
xdebug.remote_port = 9000
xdebug.max_nesting_level = 1024
xdebug.remote_autostart=1
xdebug.remote_host=192.168.10.10
xdebug.remote_log=/tmp/xdebug.log

XDebug logfile (from setting xdebug.remote_log in php.ini):
Normal no Errors
Adapter logfile (from setting "log": true in launch.json):

Code snippet to reproduce:
Double layered array, doesnt show in watch

@AnrDaemon
Copy link

Add to the launcher configuration:

          "xdebugSettings": {
            "max_children": 4096,
            "max_data": 512,
            "show_hidden": 1,
            "multiple_sessions": 1,
            "max_depth": 7,
            "extended_properties": 1
          },

(and modify for your preference)
Also, see the extension log for any settings debugger sets that may not be to your liking.
Watch for feature_set commands.

@zobo
Copy link
Contributor

zobo commented May 23, 2022

Age old problem, because Watch uses eval. Tracking possible changes here #808.

@zobo zobo closed this as completed May 23, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants