You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$myarr['myval'] $myarr->myval
Both watches incorrectly show the value "test", even though only the array access $myarr['myval'] is valid and the object access $myarr->myval should be null or result in an error.
The text was updated successfully, but these errors were encountered:
PHP version: 8.2
Xdebug version: 3.3.1
VS Code extension version: v1.35.0
Your launch.json:
Xdebug php.ini config: -
Xdebug logfile (from setting
xdebug.log
in php.ini): -VS Code extension logfile (from setting
"log": true
in launch.json): -Code snippet to reproduce:
I added two watch expressions:
$myarr['myval']
$myarr->myval
Both watches incorrectly show the value
"test"
, even though only the array access$myarr['myval']
is valid and the object access$myarr->myval
should be null or result in an error.The text was updated successfully, but these errors were encountered: