This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 225656 - Copy variable names from debugger
Summary: Copy variable names from debugger
Status: NEW
Alias: None
Product: php
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 7.1.1
Hardware: PC Windows 7
: P3 normal with 1 vote (vote)
Assignee: Ondrej Brejla
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-02 05:05 UTC by tomas.teicher
Modified: 2013-02-02 05:05 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description tomas.teicher 2013-02-02 05:05:30 UTC
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) ?