I am using XDebugg for debugging PHP in Netbeans.
In section Variables I see all my variables.
How can i copy name of some variable to clipboard? Or how to copy just a name of object's property?
For example I have variable $user and it has property like this:
$user->roles[0]->role_title = 'Webmaster';
How can I copy property name with its path in $user variable so I can type it in my source code?
(so I will have in my clipboard string $user->roles[0]->role_title) ?